Struct nix::sys::mman::MRemapFlags [−][src]
Options for mremap()
.
Implementations
impl MRemapFlags
[src][−]
pub const MREMAP_MAYMOVE: MRemapFlags
[src][−][−]
Permit the kernel to relocate the mapping to a new virtual address, if necessary.
pub const MREMAP_FIXED: MRemapFlags
[src][−][−]
Place the mapping at exactly the address specified in new_address
.
pub const fn empty() -> MRemapFlags
[src][−]
Returns an empty set of flags
pub const fn all() -> MRemapFlags
[src][−]
Returns the set containing all flags.
pub const fn bits(&self) -> c_int
[src][−]
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: c_int) -> Option<MRemapFlags>
[src][−]
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: c_int) -> MRemapFlags
[src][−]
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: c_int) -> MRemapFlags
[src][−]
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn is_empty(&self) -> bool
[src][−]
Returns true
if no flags are currently stored.
pub const fn is_all(&self) -> bool
[src][−]
Returns true
if all flags are currently set.
pub const fn intersects(&self, other: MRemapFlags) -> bool
[src][−]
Returns true
if there are flags common to both self
and other
.
pub const fn contains(&self, other: MRemapFlags) -> bool
[src][−]
Returns true
all of the flags in other
are contained within self
.
pub fn insert(&mut self, other: MRemapFlags)
[src][−]
Inserts the specified flags in-place.
pub fn remove(&mut self, other: MRemapFlags)
[src][−]
Removes the specified flags in-place.
pub fn toggle(&mut self, other: MRemapFlags)
[src][−]
Toggles the specified flags in-place.
pub fn set(&mut self, other: MRemapFlags, value: bool)
[src][−]
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl Binary for MRemapFlags
[src][+]
impl BitAnd<MRemapFlags> for MRemapFlags
[src][+]
impl BitAndAssign<MRemapFlags> for MRemapFlags
[src][+]
impl BitOr<MRemapFlags> for MRemapFlags
[src][+]
impl BitOrAssign<MRemapFlags> for MRemapFlags
[src][+]
impl BitXor<MRemapFlags> for MRemapFlags
[src][+]
impl BitXorAssign<MRemapFlags> for MRemapFlags
[src][+]
impl Clone for MRemapFlags
[src][+]
impl Copy for MRemapFlags
[src]
impl Debug for MRemapFlags
[src][+]
impl Eq for MRemapFlags
[src]
impl Extend<MRemapFlags> for MRemapFlags
[src][+]
impl FromIterator<MRemapFlags> for MRemapFlags
[src][+]
impl Hash for MRemapFlags
[src][+]
impl LowerHex for MRemapFlags
[src][+]
impl Not for MRemapFlags
[src][+]
impl Octal for MRemapFlags
[src][+]
impl Ord for MRemapFlags
[src][+]
impl PartialEq<MRemapFlags> for MRemapFlags
[src][+]
impl PartialOrd<MRemapFlags> for MRemapFlags
[src][+]
impl StructuralEq for MRemapFlags
[src]
impl StructuralPartialEq for MRemapFlags
[src]
impl Sub<MRemapFlags> for MRemapFlags
[src][+]
impl SubAssign<MRemapFlags> for MRemapFlags
[src][+]
impl UpperHex for MRemapFlags
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for MRemapFlags
impl Send for MRemapFlags
impl Sync for MRemapFlags
impl Unpin for MRemapFlags
impl UnwindSafe for MRemapFlags
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,