pub enum Bitset<'a> {
Nomask(()),
Size(u32),
Bits(IterableBitsetBits<'a>),
Value(&'a [u8]),
Mask(&'a [u8]),
}Available on crate feature
ethtool only.Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Bitset<'a>
impl<'a> RefUnwindSafe for Bitset<'a>
impl<'a> Send for Bitset<'a>
impl<'a> Sync for Bitset<'a>
impl<'a> Unpin for Bitset<'a>
impl<'a> UnsafeUnpin for Bitset<'a>
impl<'a> UnwindSafe for Bitset<'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