[][src]Enum smoltcp::wire::Ipv6OptionRepr

pub enum Ipv6OptionRepr<'a> {
    Pad1,
    PadN(u8),
    Unknown {
        type_: Type,
        length: u8,
        data: &'a [u8],
    },
    // some variants omitted
}

A high-level representation of an IPv6 Extension Header Option.

Variants

Pad1
PadN(u8)
Unknown

Fields of Unknown

type_: Typelength: u8data: &'a [u8]

Methods

impl<'a> Repr<'a>[src]

pub fn parse<T: ?Sized>(opt: &Ipv6Option<&'a T>) -> Result<Repr<'a>> where
    T: AsRef<[u8]>, 
[src]

Parse an IPv6 Extension Header Option and return a high-level representation.

pub fn buffer_len(&self) -> usize[src]

Return the length of a header that will be emitted from this high-level representation.

pub fn emit<T: AsRef<[u8]> + AsMut<[u8]> + ?Sized>(
    &self,
    opt: &mut Ipv6Option<&'a mut T>
)
[src]

Emit a high-level representation into an IPv6 Extension Header Option.

Trait Implementations

impl<'a> Clone for Repr<'a>[src]

impl<'a> Copy for Repr<'a>[src]

impl<'a> Debug for Repr<'a>[src]

impl<'a> Display for Repr<'a>[src]

impl<'a> Eq for Repr<'a>[src]

impl<'a> PartialEq<Repr<'a>> for Repr<'a>[src]

impl<'a> StructuralEq for Repr<'a>[src]

impl<'a> StructuralPartialEq for Repr<'a>[src]

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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.