#[non_exhaustive]pub struct EthernetConfig {
pub sr_iov: Option<SrIovConfig>,
pub auto_neg: Option<bool>,
pub speed: Option<u32>,
pub duplex: Option<EthernetDuplex>,
}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.sr_iov: Option<SrIovConfig>Single Root I/O Virtualization(SRIOV) configuration.
Deserialize and serialize from/to sr-iov.
auto_neg: Option<bool>Deserialize and serialize from/to auto-negotiation.
speed: Option<u32>§duplex: Option<EthernetDuplex>Implementations§
Trait Implementations§
Source§impl Clone for EthernetConfig
impl Clone for EthernetConfig
Source§fn clone(&self) -> EthernetConfig
fn clone(&self) -> EthernetConfig
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 EthernetConfig
impl Debug for EthernetConfig
Source§impl Default for EthernetConfig
impl Default for EthernetConfig
Source§fn default() -> EthernetConfig
fn default() -> EthernetConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EthernetConfig
impl<'de> Deserialize<'de> for EthernetConfig
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 EthernetConfig
impl PartialEq for EthernetConfig
Source§impl Serialize for EthernetConfig
impl Serialize for EthernetConfig
impl Eq for EthernetConfig
impl StructuralPartialEq for EthernetConfig
Auto Trait Implementations§
impl Freeze for EthernetConfig
impl RefUnwindSafe for EthernetConfig
impl Send for EthernetConfig
impl Sync for EthernetConfig
impl Unpin for EthernetConfig
impl UnwindSafe for EthernetConfig
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.