pub enum AttUns<'d> {
Notify {
handle: u16,
data: &'d [u8],
},
Indicate {
handle: u16,
data: &'d [u8],
},
}
Expand description
ATT Unsolicited PDU
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'d> Freeze for AttUns<'d>
impl<'d> RefUnwindSafe for AttUns<'d>
impl<'d> Send for AttUns<'d>
impl<'d> Sync for AttUns<'d>
impl<'d> Unpin for AttUns<'d>
impl<'d> UnwindSafe for AttUns<'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