pub enum PauseStat<'a> {
Pad(&'a [u8]),
TxFrames(u64),
RxFrames(u64),
TxPauseStormEvents(u64),
}Available on crate feature
ethtool only.Variants§
Pad(&'a [u8])
TxFrames(u64)
RxFrames(u64)
TxPauseStormEvents(u64)
TX pause storm event count. Increments each time device detects that its pause assertion condition has been true for too long for normal operation. As a result, the device has temporarily disabled its own Pause TX function to protect the network from itself. This counter should never increment under normal overload conditions; it indicates catastrophic failure like an OS crash. The rate of incrementing is implementation specific.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PauseStat<'a>
impl<'a> RefUnwindSafe for PauseStat<'a>
impl<'a> Send for PauseStat<'a>
impl<'a> Sync for PauseStat<'a>
impl<'a> Unpin for PauseStat<'a>
impl<'a> UnsafeUnpin for PauseStat<'a>
impl<'a> UnwindSafe for PauseStat<'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