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: ConnectionHandle
The connection handle which modified the attribute
attr_handle: AttributeHandle
Handle 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 duplicate 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
impl Copy for GattAttributeModified
Auto Trait Implementations§
impl Freeze for GattAttributeModified
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