#[non_exhaustive]pub struct VlanInterface {
pub base: BaseInterface,
pub vlan: Option<VlanConfig>,
}Expand description
Linux kernel VLAN interface. The example yaml output of crate::NetworkState with a VLAN interface would be:
interfaces:
- name: eth1.101
type: vlan
state: up
mac-address: BE:E8:17:8F:D2:70
mtu: 1500
max-mtu: 65535
wait-ip: any
ipv4:
enabled: false
ipv6:
enabled: false
accept-all-mac-addresses: false
vlan:
base-iface: eth1
id: 101Fields (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: BaseInterface§vlan: Option<VlanConfig>Implementations§
Source§impl VlanInterface
impl VlanInterface
Trait Implementations§
Source§impl Clone for VlanInterface
impl Clone for VlanInterface
Source§fn clone(&self) -> VlanInterface
fn clone(&self) -> VlanInterface
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VlanInterface
impl Debug for VlanInterface
Source§impl Default for VlanInterface
impl Default for VlanInterface
Source§impl<'de> Deserialize<'de> for VlanInterface
impl<'de> Deserialize<'de> for VlanInterface
Source§fn 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
Source§impl PartialEq for VlanInterface
impl PartialEq for VlanInterface
Source§impl Serialize for VlanInterface
impl Serialize for VlanInterface
impl Eq for VlanInterface
impl StructuralPartialEq for VlanInterface
Auto Trait Implementations§
impl Freeze for VlanInterface
impl RefUnwindSafe for VlanInterface
impl Send for VlanInterface
impl Sync for VlanInterface
impl Unpin for VlanInterface
impl UnwindSafe for VlanInterface
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.