pub enum SpinelDataWlen {}
Expand description
Marker type used to specify data fields that are prepended with its length.
This type is necessary because [u8]
is already defined to assume the
remaining length of the buffer.
This type has no size and is used only with the TryPackAs
/TryUnpackAs
traits
and in the base type for TryUnpack
/TryOwnedUnpack
.
Trait Implementations§
Source§impl Debug for SpinelDataWlen
impl Debug for SpinelDataWlen
Source§impl<T> TryPackAs<SpinelDataWlen> for &[T]
impl<T> TryPackAs<SpinelDataWlen> for &[T]
Source§impl TryPackAs<SpinelDataWlen> for ()
impl TryPackAs<SpinelDataWlen> for ()
Source§impl TryPackAs<SpinelDataWlen> for EUI48
impl TryPackAs<SpinelDataWlen> for EUI48
Source§impl TryPackAs<SpinelDataWlen> for EUI64
impl TryPackAs<SpinelDataWlen> for EUI64
Source§impl TryPackAs<SpinelDataWlen> for Ipv6Addr
impl TryPackAs<SpinelDataWlen> for Ipv6Addr
Source§impl<T> TryPackAs<SpinelDataWlen> for Vec<T>
impl<T> TryPackAs<SpinelDataWlen> for Vec<T>
Source§impl TryPackAs<SpinelDataWlen> for bool
impl TryPackAs<SpinelDataWlen> for bool
Source§impl TryPackAs<SpinelDataWlen> for i16
impl TryPackAs<SpinelDataWlen> for i16
Source§impl TryPackAs<SpinelDataWlen> for i32
impl TryPackAs<SpinelDataWlen> for i32
Source§impl TryPackAs<SpinelDataWlen> for i64
impl TryPackAs<SpinelDataWlen> for i64
Source§impl TryPackAs<SpinelDataWlen> for i8
impl TryPackAs<SpinelDataWlen> for i8
Source§impl TryPackAs<SpinelDataWlen> for u16
impl TryPackAs<SpinelDataWlen> for u16
Source§impl TryPackAs<SpinelDataWlen> for u32
impl TryPackAs<SpinelDataWlen> for u32
Source§impl TryPackAs<SpinelDataWlen> for u64
impl TryPackAs<SpinelDataWlen> for u64
Source§impl TryPackAs<SpinelDataWlen> for u8
impl TryPackAs<SpinelDataWlen> for u8
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for &'a [u8]
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for &'a [u8]
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a, T, const N: usize> TryUnpackAs<'a, SpinelDataWlen> for [T; N]where
Self: TryUnpackAs<'a, [u8]>,
impl<'a, T, const N: usize> TryUnpackAs<'a, SpinelDataWlen> for [T; N]where
Self: TryUnpackAs<'a, [u8]>,
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for ()
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for ()
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for EUI48
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for EUI48
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for EUI64
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for EUI64
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for Ipv6Addr
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for Ipv6Addr
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a, T> TryUnpackAs<'a, SpinelDataWlen> for Vec<T>where
Self: TryUnpackAs<'a, [u8]>,
impl<'a, T> TryUnpackAs<'a, SpinelDataWlen> for Vec<T>where
Self: TryUnpackAs<'a, [u8]>,
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for bool
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for bool
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for i16
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for i16
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for i32
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for i32
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for i64
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for i64
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for i8
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for i8
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for u16
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for u16
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for u32
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for u32
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for u64
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for u64
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Source§impl<'a> TryUnpackAs<'a, SpinelDataWlen> for u8
impl<'a> TryUnpackAs<'a, SpinelDataWlen> for u8
Source§fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
fn try_unpack_as(iter: &mut Iter<'a, u8>) -> Result<Self>
Attempts to decode the data (with a format determined by
Marker
) at the given
iterator into an instance of Self
.Source§fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
fn try_unpack_as_from_slice(slice: &'a [u8]) -> Result<Self>
Convenience method for unpacking directly from a borrowed slice.
Auto Trait Implementations§
impl Freeze for SpinelDataWlen
impl RefUnwindSafe for SpinelDataWlen
impl Send for SpinelDataWlen
impl Sync for SpinelDataWlen
impl Unpin for SpinelDataWlen
impl UnwindSafe for SpinelDataWlen
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