Struct nmstate::MacVtapConfig
source · [−]#[non_exhaustive]pub struct MacVtapConfig {
pub base_iface: String,
pub mode: MacVtapMode,
pub accept_all_mac: Option<bool>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.base_iface: Stringmode: MacVtapModeaccept_all_mac: Option<bool>Trait Implementations
sourceimpl Clone for MacVtapConfig
impl Clone for MacVtapConfig
sourcefn clone(&self) -> MacVtapConfig
fn clone(&self) -> MacVtapConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for MacVtapConfig
impl Debug for MacVtapConfig
sourceimpl Default for MacVtapConfig
impl Default for MacVtapConfig
sourcefn default() -> MacVtapConfig
fn default() -> MacVtapConfig
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for MacVtapConfig
impl<'de> Deserialize<'de> for MacVtapConfig
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<MacVtapConfig> for MacVtapConfig
impl PartialEq<MacVtapConfig> for MacVtapConfig
sourcefn eq(&self, other: &MacVtapConfig) -> bool
fn eq(&self, other: &MacVtapConfig) -> bool
sourceimpl Serialize for MacVtapConfig
impl Serialize for MacVtapConfig
impl Eq for MacVtapConfig
impl StructuralEq for MacVtapConfig
impl StructuralPartialEq for MacVtapConfig
Auto Trait Implementations
impl RefUnwindSafe for MacVtapConfig
impl Send for MacVtapConfig
impl Sync for MacVtapConfig
impl Unpin for MacVtapConfig
impl UnwindSafe for MacVtapConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
sourcefn null_value() -> T
fn null_value() -> T
The none-equivalent value.