#[repr(u32)]
#[non_exhaustive]
pub enum Advice {
Show 23 variants
Normal,
Sequential,
Random,
WillNeed,
LinuxDontNeed,
LinuxFree,
LinuxRemove,
LinuxDontFork,
LinuxDoFork,
LinuxHwPoison,
LinuxSoftOffline,
LinuxMergeable,
LinuxUnmergeable,
LinuxHugepage,
LinuxNoHugepage,
LinuxDontDump,
LinuxDoDump,
LinuxWipeOnFork,
LinuxKeepOnFork,
LinuxCold,
LinuxPageOut,
LinuxPopulateRead,
LinuxPopulateWrite,
}
Expand description
POSIX_MADV_*
constants for use with madvise
.
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.
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)
LinuxPopulateRead
MADV_POPULATE_READ
(since Linux 5.14)
LinuxPopulateWrite
MADV_POPULATE_WRITE
(since Linux 5.14)
Implementations
Trait Implementations
impl Copy for Advice
impl Eq for Advice
impl StructuralEq for Advice
impl StructuralPartialEq for Advice
Auto Trait Implementations
impl RefUnwindSafe for Advice
impl Send for Advice
impl Sync for Advice
impl Unpin for Advice
impl UnwindSafe for Advice
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more