[][src]Enum domain::base::opt::AllOptData

#[non_exhaustive]pub enum AllOptData<Octets> {
    Nsid(Nsid<Octets>),
    Dau(Dau<Octets>),
    Dhu(Dhu<Octets>),
    N3u(N3u<Octets>),
    Expire(Expire),
    TcpKeepalive(TcpKeepalive),
    Padding(Padding),
    ClientSubnet(ClientSubnet),
    Cookie(Cookie),
    Chain(Chain<Octets>),
    KeyTag(KeyTag<Octets>),
    Other(UnknownOptData<Octets>),
}

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Nsid(Nsid<Octets>)
Dau(Dau<Octets>)
Dhu(Dhu<Octets>)
N3u(N3u<Octets>)
Expire(Expire)
TcpKeepalive(TcpKeepalive)
Padding(Padding)
ClientSubnet(ClientSubnet)
Cookie(Cookie)
Chain(Chain<Octets>)
KeyTag(KeyTag<Octets>)
Other(UnknownOptData<Octets>)

Trait Implementations

impl<Octets: Clone> Clone for AllOptData<Octets>[src]

impl<Octets: AsRef<[u8]>> Compose for AllOptData<Octets>[src]

impl<Octets> From<Chain<Octets>> for AllOptData<Octets>[src]

impl<Octets> From<ClientSubnet> for AllOptData<Octets>[src]

impl<Octets> From<Cookie> for AllOptData<Octets>[src]

impl<Octets> From<Dau<Octets>> for AllOptData<Octets>[src]

impl<Octets> From<Dhu<Octets>> for AllOptData<Octets>[src]

impl<Octets> From<Expire> for AllOptData<Octets>[src]

impl<Octets> From<KeyTag<Octets>> for AllOptData<Octets>[src]

impl<Octets> From<N3u<Octets>> for AllOptData<Octets>[src]

impl<Octets> From<Nsid<Octets>> for AllOptData<Octets>[src]

impl<Octets> From<Padding> for AllOptData<Octets>[src]

impl<Octets> From<TcpKeepalive> for AllOptData<Octets>[src]

impl<Octets: AsRef<[u8]>> OptData for AllOptData<Octets>[src]

impl<Ref: OctetsRef> ParseOptData<Ref> for AllOptData<Ref::Range>[src]

Auto Trait Implementations

impl<Octets> RefUnwindSafe for AllOptData<Octets> where
    Octets: RefUnwindSafe

impl<Octets> Send for AllOptData<Octets> where
    Octets: Send

impl<Octets> Sync for AllOptData<Octets> where
    Octets: Sync

impl<Octets> Unpin for AllOptData<Octets> where
    Octets: Unpin

impl<Octets> UnwindSafe for AllOptData<Octets> where
    Octets: UnwindSafe

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> OptData for T where
    T: Compose + CodeOptData
[src]

impl<Octets, T> ParseOptData<Octets> for T where
    T: CodeOptData + Parse<Octets> + Compose
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,