pub enum CnMsgIdx {
Proc,
Cifs,
W1,
V86d,
Bb,
Dst,
Dm,
Drbd,
Kvp,
Vss,
UnrecognizedConst(u32),
}
Expand description
Values for idx
in CnMsg
.
Variants§
Implementations§
Trait Implementations§
Source§impl Ord for CnMsgIdx
impl Ord for CnMsgIdx
Source§impl PartialOrd for CnMsgIdx
impl PartialOrd for CnMsgIdx
Source§impl Size for CnMsgIdx
impl Size for CnMsgIdx
Source§fn unpadded_size(&self) -> usize
fn unpadded_size(&self) -> usize
Size of the unpadded data structure. This will usually
only be unaligned for variable length types like
strings or byte buffers.
Source§fn padded_size(&self) -> usize
fn padded_size(&self) -> usize
Get the size of the payload and align it to
the required netlink byte alignment.
impl Copy for CnMsgIdx
impl Eq for CnMsgIdx
impl StructuralPartialEq for CnMsgIdx
Auto Trait Implementations§
impl Freeze for CnMsgIdx
impl RefUnwindSafe for CnMsgIdx
impl Send for CnMsgIdx
impl Sync for CnMsgIdx
impl Unpin for CnMsgIdx
impl UnwindSafe for CnMsgIdx
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