[][src]Struct nispor::BridgeVlanEntry

pub struct BridgeVlanEntry {
    pub vid: Option<u16>,
    pub vid_range: Option<(u16, u16)>,
    pub is_pvid: bool,
    pub is_egress_untagged: bool,
}

Fields

vid: Option<u16>vid_range: Option<(u16, u16)>is_pvid: boolis_egress_untagged: bool

Trait Implementations

impl Clone for BridgeVlanEntry[src]

impl Debug for BridgeVlanEntry[src]

impl Default for BridgeVlanEntry[src]

impl<'de> Deserialize<'de> for BridgeVlanEntry[src]

impl PartialEq<BridgeVlanEntry> for BridgeVlanEntry[src]

impl Serialize for BridgeVlanEntry[src]

impl StructuralPartialEq for BridgeVlanEntry[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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, 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.