pub enum PlatformFeatureConfiguration {
Gso {
max_segments: usize,
},
Gro {
enabled: bool,
},
Ecn {
enabled: bool,
},
MaxMtu {
mtu: u16,
},
}Variants§
Gso
Fields
Emitted when segment offload was configured
Gro
Emitted when receive segment offload was configured
Ecn
Emitted when ECN support is configured
MaxMtu
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