pub enum IflaInet6Stats {
Show 37 variants
Num = 0,
Inpkts = 1,
Inoctets = 2,
Indelivers = 3,
Outforwdatagrams = 4,
Outpkts = 5,
Outoctets = 6,
Inhdrerrors = 7,
Intoobigerrors = 8,
Innoroutes = 9,
Inaddrerrors = 10,
Inunknownprotos = 11,
Intruncatedpkts = 12,
Indiscards = 13,
Outdiscards = 14,
Outnoroutes = 15,
Reasmtimeout = 16,
Reasmreqds = 17,
Reasmoks = 18,
Reasmfails = 19,
Fragoks = 20,
Fragfails = 21,
Fragcreates = 22,
Inmcastpkts = 23,
Outmcastpkts = 24,
Inbcastpkts = 25,
Outbcastpkts = 26,
Inmcastoctets = 27,
Outmcastoctets = 28,
Inbcastoctets = 29,
Outbcastoctets = 30,
Csumerrors = 31,
Noectpkts = 32,
Ect1Pkts = 33,
Ect0Pkts = 34,
Cepkts = 35,
ReasmOverlaps = 36,
}Available on crate feature
rt-link only.Expand description
Enum - defines an integer enumeration, with values for each entry incrementing by 1, (e.g. 0, 1, 2, 3)
Variants§
Num = 0
Inpkts = 1
Inoctets = 2
Indelivers = 3
Outforwdatagrams = 4
Outpkts = 5
Outoctets = 6
Inhdrerrors = 7
Intoobigerrors = 8
Innoroutes = 9
Inaddrerrors = 10
Inunknownprotos = 11
Intruncatedpkts = 12
Indiscards = 13
Outdiscards = 14
Outnoroutes = 15
Reasmtimeout = 16
Reasmreqds = 17
Reasmoks = 18
Reasmfails = 19
Fragoks = 20
Fragfails = 21
Fragcreates = 22
Inmcastpkts = 23
Outmcastpkts = 24
Inbcastpkts = 25
Outbcastpkts = 26
Inmcastoctets = 27
Outmcastoctets = 28
Inbcastoctets = 29
Outbcastoctets = 30
Csumerrors = 31
Noectpkts = 32
Ect1Pkts = 33
Ect0Pkts = 34
Cepkts = 35
ReasmOverlaps = 36
Implementations§
Source§impl IflaInet6Stats
impl IflaInet6Stats
pub fn from_value(value: u64) -> Option<Self>
Trait Implementations§
Source§impl Clone for IflaInet6Stats
impl Clone for IflaInet6Stats
Source§fn clone(&self) -> IflaInet6Stats
fn clone(&self) -> IflaInet6Stats
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 IflaInet6Stats
impl Debug for IflaInet6Stats
impl Copy for IflaInet6Stats
Auto Trait Implementations§
impl Freeze for IflaInet6Stats
impl RefUnwindSafe for IflaInet6Stats
impl Send for IflaInet6Stats
impl Sync for IflaInet6Stats
impl Unpin for IflaInet6Stats
impl UnwindSafe for IflaInet6Stats
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