[][src]Struct qapi_qmp::RxFilterInfo

pub struct RxFilterInfo {
    pub promiscuous: bool,
    pub name: String,
    pub multicast: RxState,
    pub unicast: RxState,
    pub multicast_overflow: bool,
    pub unicast_overflow: bool,
    pub main_mac: String,
    pub vlan_table: Vec<isize>,
    pub broadcast_allowed: bool,
    pub unicast_table: Vec<String>,
    pub multicast_table: Vec<String>,
    pub vlan: RxState,
}

Fields

promiscuous: boolname: Stringmulticast: RxStateunicast: RxStatemulticast_overflow: boolunicast_overflow: boolmain_mac: Stringvlan_table: Vec<isize>broadcast_allowed: boolunicast_table: Vec<String>multicast_table: Vec<String>vlan: RxState

Trait Implementations

impl Clone for RxFilterInfo[src]

impl Debug for RxFilterInfo[src]

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

impl Serialize for RxFilterInfo[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.