pub struct LoopbackCommand<'a> {
pub command_packet: RemainingBytes<'a>,
}Expand description
Loopback Command event ๐
Fieldsยง
ยงcommand_packet: RemainingBytes<'a>command_packet
Trait Implementationsยง
Sourceยงimpl<'a> Clone for LoopbackCommand<'a>
impl<'a> Clone for LoopbackCommand<'a>
Sourceยงfn clone(&self) -> LoopbackCommand<'a>
fn clone(&self) -> LoopbackCommand<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSourceยงimpl<'a> Debug for LoopbackCommand<'a>
impl<'a> Debug for LoopbackCommand<'a>
Sourceยงimpl<'a> EventParams<'a> for LoopbackCommand<'a>
impl<'a> EventParams<'a> for LoopbackCommand<'a>
Sourceยงconst EVENT_CODE: u8 = 0x19
const EVENT_CODE: u8 = 0x19
The event code these parameters are for
Sourceยงimpl<'a> FromHciBytes<'a> for LoopbackCommand<'a>
impl<'a> FromHciBytes<'a> for LoopbackCommand<'a>
Sourceยงfn from_hci_bytes(data: &'a [u8]) -> Result<(Self, &'a [u8]), FromHciBytesError>
fn from_hci_bytes(data: &'a [u8]) -> Result<(Self, &'a [u8]), FromHciBytesError>
Deserialize bytes into a HCI type, return additional bytes.
Sourceยงfn from_hci_bytes_complete(data: &'de [u8]) -> Result<Self, FromHciBytesError>
fn from_hci_bytes_complete(data: &'de [u8]) -> Result<Self, FromHciBytesError>
Deserialize bytes into a HCI type, must consume all bytes.
Sourceยงimpl<'a> Hash for LoopbackCommand<'a>
impl<'a> Hash for LoopbackCommand<'a>
impl<'a> Copy for LoopbackCommand<'a>
Auto Trait Implementationsยง
impl<'a> Freeze for LoopbackCommand<'a>
impl<'a> RefUnwindSafe for LoopbackCommand<'a>
impl<'a> Send for LoopbackCommand<'a>
impl<'a> Sync for LoopbackCommand<'a>
impl<'a> Unpin for LoopbackCommand<'a>
impl<'a> UnsafeUnpin for LoopbackCommand<'a>
impl<'a> UnwindSafe for LoopbackCommand<'a>
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