pub enum AttClient<'d> {
Request(AttReq<'d>),
Command(AttCmd<'d>),
Confirmation(AttCfm),
}
Expand description
ATT Client PDU (Request, Command, Confirmation)
The ATT Client PDU is used to send requests, commands and confirmations to the ATT Server
Variants§
Request(AttReq<'d>)
ATT Request PDU
Command(AttCmd<'d>)
ATT Command PDU
Confirmation(AttCfm)
ATT Confirmation PDU
Trait Implementations§
Auto Trait Implementations§
impl<'d> Freeze for AttClient<'d>
impl<'d> RefUnwindSafe for AttClient<'d>
impl<'d> Send for AttClient<'d>
impl<'d> Sync for AttClient<'d>
impl<'d> Unpin for AttClient<'d>
impl<'d> UnwindSafe for AttClient<'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