pub enum Att<'d> {
Client(AttClient<'d>),
Server(AttServer<'d>),
}
Expand description
ATT Protocol Data Unit (PDU)
Variants§
Client(AttClient<'d>)
ATT Client PDU (Request, Command, Confirmation)
The ATT Client PDU is used to send requests, commands and confirmations to the ATT Server
Server(AttServer<'d>)
ATT Server PDU (Response, Unsolicited)
The ATT Server PDU is used to send responses and unsolicited ATT PDUs (notifications and indications) to the ATT Client
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'d> Freeze for Att<'d>
impl<'d> RefUnwindSafe for Att<'d>
impl<'d> Send for Att<'d>
impl<'d> Sync for Att<'d>
impl<'d> Unpin for Att<'d>
impl<'d> UnwindSafe for Att<'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