pub enum AttReq<'d> {
ReadByGroupType {
start: u16,
end: u16,
group_type: Uuid,
},
ReadByType {
start: u16,
end: u16,
attribute_type: Uuid,
},
Read {
handle: u16,
},
Write {
handle: u16,
data: &'d [u8],
},
ExchangeMtu {
mtu: u16,
},
FindByTypeValue {
start_handle: u16,
end_handle: u16,
att_type: u16,
att_value: &'d [u8],
},
FindInformation {
start_handle: u16,
end_handle: u16,
},
PrepareWrite {
handle: u16,
offset: u16,
value: &'d [u8],
},
ExecuteWrite {
flags: u8,
},
ReadMultiple {
handles: &'d [u8],
},
ReadBlob {
handle: u16,
offset: u16,
},
}
Expand description
ATT Request PDU
Variants§
ReadByGroupType
Read By Group Type Request
ReadByType
Read By Type Request
Fields
Read
Read Request
Write
Write Request
ExchangeMtu
Exchange MTU Request
FindByTypeValue
Find By Type Value Request
Fields
FindInformation
Find Information Request
PrepareWrite
Prepare Write Request
ExecuteWrite
Execute Write Request
ReadMultiple
Read Multiple Request
ReadBlob
Read Blob Request
Trait Implementations§
Auto Trait Implementations§
impl<'d> Freeze for AttReq<'d>
impl<'d> RefUnwindSafe for AttReq<'d>
impl<'d> Send for AttReq<'d>
impl<'d> Sync for AttReq<'d>
impl<'d> Unpin for AttReq<'d>
impl<'d> UnwindSafe for AttReq<'d>
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