#[non_exhaustive]pub struct EthernetInterface {
pub base: BaseInterface,
pub ethernet: Option<EthernetConfig>,
pub veth: Option<VethConfig>,
}Expand description
Ethernet(IEEE 802.3) interface. Besides BaseInterface, optionally could hold EthernetConfig and/or VethConfig. The yaml output of crate::NetworkState containing ethernet interface would be:
interfaces:
- name: ens3
type: ethernet
state: up
mac-address: 00:11:22:33:44:FF
mtu: 1500
min-mtu: 68
max-mtu: 65535
wait-ip: ipv4
ipv4:
enabled: true
dhcp: false
address:
- ip: 192.0.2.9
prefix-length: 24
ipv6:
enabled: false
mptcp:
address-flags: []
accept-all-mac-addresses: false
lldp:
enabled: false
ethtool:
feature:
tx-tcp-ecn-segmentation: true
tx-tcp-mangleid-segmentation: false
tx-tcp6-segmentation: true
tx-tcp-segmentation: true
rx-gro-list: false
rx-udp-gro-forwarding: false
rx-gro-hw: true
tx-checksum-ip-generic: true
tx-generic-segmentation: true
rx-gro: true
tx-nocache-copy: false
coalesce:
rx-frames: 1
tx-frames: 1
ring:
rx: 256
rx-max: 256
tx: 256
tx-max: 256
ethernet:
auto-negotiation: falseFields (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§ethernet: Option<EthernetConfig>§veth: Option<VethConfig>When applying, the VethConfig is only valid when [BaseInterface.iface_type] is set to InterfaceType::Veth explicitly.
Implementations§
Trait Implementations§
Source§impl Clone for EthernetInterface
impl Clone for EthernetInterface
Source§fn clone(&self) -> EthernetInterface
fn clone(&self) -> EthernetInterface
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 EthernetInterface
impl Debug for EthernetInterface
Source§impl Default for EthernetInterface
impl Default for EthernetInterface
Source§impl<'de> Deserialize<'de> for EthernetInterface
impl<'de> Deserialize<'de> for EthernetInterface
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 EthernetInterface
impl PartialEq for EthernetInterface
Source§impl Serialize for EthernetInterface
impl Serialize for EthernetInterface
impl Eq for EthernetInterface
impl StructuralPartialEq for EthernetInterface
Auto Trait Implementations§
impl Freeze for EthernetInterface
impl RefUnwindSafe for EthernetInterface
impl Send for EthernetInterface
impl Sync for EthernetInterface
impl Unpin for EthernetInterface
impl UnwindSafe for EthernetInterface
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.