Struct stm32wb_hci::vendor::stm32wb::event::GattAttributeModified
source · pub struct GattAttributeModified {
pub conn_handle: ConnectionHandle,
pub attr_handle: AttributeHandle,
/* private fields */
}Expand description
This event is generated to the application by the ATT server when a client modifies any attribute on the server, as consequence of one of the following ATT procedures:
- write without response
- signed write without response
- write characteristic value
- write long characteristic value
- reliable write
Fields§
§conn_handle: ConnectionHandleThe connection handle which modified the attribute
attr_handle: AttributeHandleHandle of the attribute that was modified
Implementations§
Trait Implementations§
source§impl Clone for GattAttributeModified
impl Clone for GattAttributeModified
source§fn clone(&self) -> GattAttributeModified
fn clone(&self) -> GattAttributeModified
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GattAttributeModified
impl Debug for GattAttributeModified
source§impl Format for GattAttributeModified
impl Format for GattAttributeModified
impl Copy for GattAttributeModified
Auto Trait Implementations§
impl RefUnwindSafe for GattAttributeModified
impl Send for GattAttributeModified
impl Sync for GattAttributeModified
impl Unpin for GattAttributeModified
impl UnwindSafe for GattAttributeModified
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more