Enum rustix::io::Advice[][src]

#[repr(u32)]
pub enum Advice {
Show 21 variants Normal, Sequential, Random, WillNeed, LinuxDontNeed, LinuxFree, LinuxRemove, LinuxDontFork, LinuxDoFork, LinuxHwPoison, LinuxSoftOffline, LinuxMergeable, LinuxUnmergeable, LinuxHugepage, LinuxNoHugepage, LinuxDontDump, LinuxDoDump, LinuxWipeOnFork, LinuxKeepOnFork, LinuxCold, LinuxPageOut,
}
Expand description

POSIX_MADV_* constants for use with madvise.

Variants

Normal

POSIX_MADV_NORMAL

Sequential

POSIX_MADV_SEQUENTIAL

Random

POSIX_MADV_RANDOM

WillNeed

POSIX_MADV_WILLNEED

LinuxDontNeed

MADV_DONTNEED

LinuxFree

MADV_FREE (since Linux 4.5)

LinuxRemove

MADV_REMOVE

LinuxDontFork

MADV_DONTFORK

LinuxDoFork

MADV_DOFORK

LinuxHwPoison

MADV_HWPOISON

LinuxSoftOffline

MADV_SOFT_OFFLINE

LinuxMergeable

MADV_MERGEABLE

LinuxUnmergeable

MADV_UNMERGEABLE

LinuxHugepage

MADV_HUGEPAGE (since Linux 2.6.38)

LinuxNoHugepage

MADV_NOHUGEPAGE (since Linux 2.6.38)

LinuxDontDump

MADV_DONTDUMP (since Linux 3.4)

LinuxDoDump

MADV_DODUMP (since Linux 3.4)

LinuxWipeOnFork

MADV_WIPEONFORK (since Linux 4.14)

LinuxKeepOnFork

MADV_KEEPONFORK (since Linux 4.14)

LinuxCold

MADV_COLD (since Linux 5.4)

LinuxPageOut

MADV_PAGEOUT (since Linux 5.4)

Implementations

POSIX_MADV_DONTNEED

On Linux, this is mapped to POSIX_MADV_NORMAL because Linux’s MADV_DONTNEED differs from POSIX_MADV_DONTNEED. See LinuxDontNeed for the Linux behavior.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.