pub enum QstatsScope {
Queue = 1,
}Available on crate feature
netdev only.Expand description
Flags - defines an integer enumeration, with values for each entry occupying a bit, starting from bit 0, (e.g. 1, 2, 4, 8)
Variants§
Queue = 1
Implementations§
Source§impl QstatsScope
impl QstatsScope
pub fn from_value(value: u64) -> Option<Self>
Trait Implementations§
Source§impl Clone for QstatsScope
impl Clone for QstatsScope
Source§fn clone(&self) -> QstatsScope
fn clone(&self) -> QstatsScope
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QstatsScope
impl Debug for QstatsScope
impl Copy for QstatsScope
Auto Trait Implementations§
impl Freeze for QstatsScope
impl RefUnwindSafe for QstatsScope
impl Send for QstatsScope
impl Sync for QstatsScope
impl Unpin for QstatsScope
impl UnsafeUnpin for QstatsScope
impl UnwindSafe for QstatsScope
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