Enum netplan_types::AddressMapping
source · [−]pub enum AddressMapping {
Simple(String),
Complex {
lifetime: PreferredLifetime,
label: String,
},
}Variants
Simple(String)
Complex
Fields
lifetime: PreferredLifetimeDefault: forever. This can be forever or 0 and corresponds to the PreferredLifetime option in systemd-networkd’s Address section. Currently supported on the networkd backend only.
label: StringAn IP address label, equivalent to the ip address label command. Currently supported on the networkd backend only.
Trait Implementations
sourceimpl Clone for AddressMapping
impl Clone for AddressMapping
sourcefn clone(&self) -> AddressMapping
fn clone(&self) -> AddressMapping
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 more
sourceimpl Debug for AddressMapping
impl Debug for AddressMapping
sourceimpl<'de> Deserialize<'de> for AddressMapping
impl<'de> Deserialize<'de> for AddressMapping
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<AddressMapping> for AddressMapping
impl PartialEq<AddressMapping> for AddressMapping
sourcefn eq(&self, other: &AddressMapping) -> bool
fn eq(&self, other: &AddressMapping) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AddressMapping) -> bool
fn ne(&self, other: &AddressMapping) -> bool
This method tests for !=.
sourceimpl Serialize for AddressMapping
impl Serialize for AddressMapping
impl Eq for AddressMapping
impl StructuralEq for AddressMapping
impl StructuralPartialEq for AddressMapping
Auto Trait Implementations
impl RefUnwindSafe for AddressMapping
impl Send for AddressMapping
impl Sync for AddressMapping
impl Unpin for AddressMapping
impl UnwindSafe for AddressMapping
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more