pub enum NtfExtFlags {
Managed = 1,
Locked = 2,
ExtValidated = 4,
}Available on crate feature
rt-neigh 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§
Implementations§
Source§impl NtfExtFlags
impl NtfExtFlags
pub fn from_value(value: u64) -> Option<Self>
Trait Implementations§
Source§impl Clone for NtfExtFlags
impl Clone for NtfExtFlags
Source§fn clone(&self) -> NtfExtFlags
fn clone(&self) -> NtfExtFlags
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 moreimpl Copy for NtfExtFlags
Auto Trait Implementations§
impl Freeze for NtfExtFlags
impl RefUnwindSafe for NtfExtFlags
impl Send for NtfExtFlags
impl Sync for NtfExtFlags
impl Unpin for NtfExtFlags
impl UnsafeUnpin for NtfExtFlags
impl UnwindSafe for NtfExtFlags
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