pub enum Mse<'a> {
Header(IterableHeader<'a>),
Capabilities(IterableMseCapabilities<'a>),
ChannelA(IterableMseSnapshot<'a>),
ChannelB(IterableMseSnapshot<'a>),
ChannelC(IterableMseSnapshot<'a>),
ChannelD(IterableMseSnapshot<'a>),
WorstChannel(IterableMseSnapshot<'a>),
Link(IterableMseSnapshot<'a>),
}Available on crate feature
ethtool only.Variants§
Header(IterableHeader<'a>)
Capabilities(IterableMseCapabilities<'a>)
ChannelA(IterableMseSnapshot<'a>)
ChannelB(IterableMseSnapshot<'a>)
ChannelC(IterableMseSnapshot<'a>)
ChannelD(IterableMseSnapshot<'a>)
WorstChannel(IterableMseSnapshot<'a>)
Link(IterableMseSnapshot<'a>)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Mse<'a>
impl<'a> RefUnwindSafe for Mse<'a>
impl<'a> Send for Mse<'a>
impl<'a> Sync for Mse<'a>
impl<'a> Unpin for Mse<'a>
impl<'a> UnsafeUnpin for Mse<'a>
impl<'a> UnwindSafe for Mse<'a>
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