Struct nmstate::LinuxBridgeConfig
source · [−]#[non_exhaustive]pub struct LinuxBridgeConfig {
pub options: Option<LinuxBridgeOptions>,
pub port: Option<Vec<LinuxBridgePortConfig>>,
}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.options: Option<LinuxBridgeOptions>port: Option<Vec<LinuxBridgePortConfig>>Implementations
Trait Implementations
sourceimpl Clone for LinuxBridgeConfig
impl Clone for LinuxBridgeConfig
sourcefn clone(&self) -> LinuxBridgeConfig
fn clone(&self) -> LinuxBridgeConfig
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 LinuxBridgeConfig
impl Debug for LinuxBridgeConfig
sourceimpl Default for LinuxBridgeConfig
impl Default for LinuxBridgeConfig
sourcefn default() -> LinuxBridgeConfig
fn default() -> LinuxBridgeConfig
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for LinuxBridgeConfig
impl<'de> Deserialize<'de> for LinuxBridgeConfig
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<LinuxBridgeConfig> for LinuxBridgeConfig
impl PartialEq<LinuxBridgeConfig> for LinuxBridgeConfig
sourcefn eq(&self, other: &LinuxBridgeConfig) -> bool
fn eq(&self, other: &LinuxBridgeConfig) -> bool
sourceimpl Serialize for LinuxBridgeConfig
impl Serialize for LinuxBridgeConfig
impl Eq for LinuxBridgeConfig
impl StructuralEq for LinuxBridgeConfig
impl StructuralPartialEq for LinuxBridgeConfig
Auto Trait Implementations
impl RefUnwindSafe for LinuxBridgeConfig
impl Send for LinuxBridgeConfig
impl Sync for LinuxBridgeConfig
impl Unpin for LinuxBridgeConfig
impl UnwindSafe for LinuxBridgeConfig
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.