Enum linux_raw_sys::netlink::nl_mmap_status
source · #[repr(u32)]#[non_exhaustive]pub enum nl_mmap_status {
NL_MMAP_STATUS_UNUSED,
NL_MMAP_STATUS_RESERVED,
NL_MMAP_STATUS_VALID,
NL_MMAP_STATUS_COPY,
NL_MMAP_STATUS_SKIP,
}
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.
NL_MMAP_STATUS_UNUSED
NL_MMAP_STATUS_RESERVED
NL_MMAP_STATUS_VALID
NL_MMAP_STATUS_COPY
NL_MMAP_STATUS_SKIP
Trait Implementations§
source§impl Clone for nl_mmap_status
impl Clone for nl_mmap_status
source§fn clone(&self) -> nl_mmap_status
fn clone(&self) -> nl_mmap_status
Returns a copy 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 nl_mmap_status
impl Debug for nl_mmap_status
source§impl Hash for nl_mmap_status
impl Hash for nl_mmap_status
source§impl PartialEq<nl_mmap_status> for nl_mmap_status
impl PartialEq<nl_mmap_status> for nl_mmap_status
source§fn eq(&self, other: &nl_mmap_status) -> bool
fn eq(&self, other: &nl_mmap_status) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for nl_mmap_status
impl Eq for nl_mmap_status
impl StructuralEq for nl_mmap_status
impl StructuralPartialEq for nl_mmap_status
Auto Trait Implementations§
impl RefUnwindSafe for nl_mmap_status
impl Send for nl_mmap_status
impl Sync for nl_mmap_status
impl Unpin for nl_mmap_status
impl UnwindSafe for nl_mmap_status
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