pub enum ProtocolFeatures {
SplitWiphyDump = 1,
}Available on crate feature
nl80211 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§
SplitWiphyDump = 1
Implementations§
Source§impl ProtocolFeatures
impl ProtocolFeatures
pub fn from_value(value: u64) -> Option<Self>
Trait Implementations§
Source§impl Clone for ProtocolFeatures
impl Clone for ProtocolFeatures
Source§fn clone(&self) -> ProtocolFeatures
fn clone(&self) -> ProtocolFeatures
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 ProtocolFeatures
impl Debug for ProtocolFeatures
impl Copy for ProtocolFeatures
Auto Trait Implementations§
impl Freeze for ProtocolFeatures
impl RefUnwindSafe for ProtocolFeatures
impl Send for ProtocolFeatures
impl Sync for ProtocolFeatures
impl Unpin for ProtocolFeatures
impl UnwindSafe for ProtocolFeatures
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