[][src]Enum nix::sys::mman::MmapAdvise

#[repr(i32)]
pub enum MmapAdvise {
    MADV_NORMAL,
    MADV_RANDOM,
    MADV_SEQUENTIAL,
    MADV_WILLNEED,
    MADV_DONTNEED,
    MADV_FREE,
    MADV_ZERO_WIRED_PAGES,
    MADV_FREE_REUSABLE,
    MADV_FREE_REUSE,
    MADV_CAN_REUSE,
}

Usage information for a range of memory to allow for performance optimizations by the kernel.

Used by madvise.

Variants

MADV_NORMAL

No further special treatment. This is the default.

MADV_RANDOM

Expect random page references.

MADV_SEQUENTIAL

Expect sequential page references.

MADV_WILLNEED

Expect access in the near future.

MADV_DONTNEED

Do not expect access in the near future.

MADV_FREE

Specify that the application no longer needs the pages in the given range.

MADV_ZERO_WIRED_PAGES

Indicates that the application will not need the data in the given range.

MADV_FREE_REUSABLEMADV_FREE_REUSEMADV_CAN_REUSE

Trait Implementations

impl Eq for MmapAdvise[src]

impl Clone for MmapAdvise[src]

impl PartialOrd<MmapAdvise> for MmapAdvise[src]

impl Ord for MmapAdvise[src]

impl PartialEq<MmapAdvise> for MmapAdvise[src]

impl Copy for MmapAdvise[src]

impl Hash for MmapAdvise[src]

impl Debug for MmapAdvise[src]

Auto Trait Implementations

impl Sync for MmapAdvise

impl Send for MmapAdvise

impl Unpin for MmapAdvise

impl RefUnwindSafe for MmapAdvise

impl UnwindSafe for MmapAdvise

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]