#[non_exhaustive]#[repr(u8)]pub enum Mq {
VqPairsSet = 0,
RssConfig = 1,
HashConfig = 2,
}
Expand description
Multiqueue mode commands
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
VqPairsSet = 0
For automatic receive steering
RssConfig = 1
For configurable receive steering
HashConfig = 2
For configurable hash calculation
Trait Implementations§
Source§impl TryFromPrimitive for Mq
impl TryFromPrimitive for Mq
impl Copy for Mq
impl Eq for Mq
impl StructuralPartialEq for Mq
Auto Trait Implementations§
impl Freeze for Mq
impl RefUnwindSafe for Mq
impl Send for Mq
impl Sync for Mq
impl Unpin for Mq
impl UnwindSafe for Mq
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