#[non_exhaustive]pub enum PlatformFeatureConfiguration {
Gso {
max_segments: usize,
},
Gro {
enabled: bool,
},
Ecn {
enabled: bool,
},
MaxMtu {
mtu: u16,
},
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Gso
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Emitted when segment offload was configured
Gro
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Emitted when receive segment offload was configured
Ecn
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Emitted when ECN support is configured
MaxMtu
Fields
This variant is marked as non-exhaustive
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Emitted when the maximum transmission unit is configured
Trait Implementations§
source§impl Clone for PlatformFeatureConfiguration
impl Clone for PlatformFeatureConfiguration
source§fn clone(&self) -> PlatformFeatureConfiguration
fn clone(&self) -> PlatformFeatureConfiguration
Returns a copy 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 PlatformFeatureConfiguration
impl Debug for PlatformFeatureConfiguration
Auto Trait Implementations§
impl RefUnwindSafe for PlatformFeatureConfiguration
impl Send for PlatformFeatureConfiguration
impl Sync for PlatformFeatureConfiguration
impl Unpin for PlatformFeatureConfiguration
impl UnwindSafe for PlatformFeatureConfiguration
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