Enum rustix::backend::c::nl_mmap_status
source · #[non_exhaustive]#[repr(u32)]pub(crate) enum nl_mmap_status {
NL_MMAP_STATUS_UNUSED = 0,
NL_MMAP_STATUS_RESERVED = 1,
NL_MMAP_STATUS_VALID = 2,
NL_MMAP_STATUS_COPY = 3,
NL_MMAP_STATUS_SKIP = 4,
}
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 = 0
NL_MMAP_STATUS_RESERVED = 1
NL_MMAP_STATUS_VALID = 2
NL_MMAP_STATUS_COPY = 3
NL_MMAP_STATUS_SKIP = 4
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 for nl_mmap_status
impl PartialEq 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 StructuralPartialEq for nl_mmap_status
Auto Trait Implementations§
impl Freeze for nl_mmap_status
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