Enum smoltcp::wire::NdiscOptionRepr
source · [−]pub enum NdiscOptionRepr<'a> {
SourceLinkLayerAddr(RawHardwareAddress),
TargetLinkLayerAddr(RawHardwareAddress),
PrefixInformation(PrefixInformation),
RedirectedHeader(RedirectedHeader<'a>),
Mtu(u32),
Unknown {
type_: u8,
length: u8,
data: &'a [u8],
},
}Expand description
A high-level representation of an NDISC Option.
Variants
SourceLinkLayerAddr(RawHardwareAddress)
TargetLinkLayerAddr(RawHardwareAddress)
PrefixInformation(PrefixInformation)
RedirectedHeader(RedirectedHeader<'a>)
Mtu(u32)
Unknown
Implementations
sourceimpl<'a> Repr<'a>
impl<'a> Repr<'a>
sourcepub fn parse<T>(opt: &'a NdiscOption<&'a T>) -> Result<Repr<'a>> where
T: AsRef<[u8]> + ?Sized,
pub fn parse<T>(opt: &'a NdiscOption<&'a T>) -> Result<Repr<'a>> where
T: AsRef<[u8]> + ?Sized,
Parse an NDISC Option and return a high-level representation.
sourcepub fn buffer_len(&self) -> usize
pub fn buffer_len(&self) -> usize
Return the length of a header that will be emitted from this high-level representation.
sourcepub fn emit<T>(&self, opt: &mut NdiscOption<&'a mut T>) where
T: AsRef<[u8]> + AsMut<[u8]> + ?Sized,
pub fn emit<T>(&self, opt: &mut NdiscOption<&'a mut T>) where
T: AsRef<[u8]> + AsMut<[u8]> + ?Sized,
Emit a high-level representation into an NDISC Option.
Trait Implementations
impl<'a> Copy for Repr<'a>
impl<'a> Eq for Repr<'a>
impl<'a> StructuralEq for Repr<'a>
impl<'a> StructuralPartialEq for Repr<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Repr<'a>
impl<'a> Send for Repr<'a>
impl<'a> Sync for Repr<'a>
impl<'a> Unpin for Repr<'a>
impl<'a> UnwindSafe for Repr<'a>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more