Enum system_interface::fs::Advice
source · [−]#[repr(i32)]
pub enum Advice {
Normal,
Sequential,
Random,
WillNeed,
DontNeed,
NoReuse,
}
Expand description
Advice to pass to FileIoExt::advise
.
Variants
Normal
No advice; default heuristics apply.
Sequential
Data will be accessed sequentially at ascending offsets.
Random
Data will be accessed with an irregular access pattern.
WillNeed
Data will be accessed soon.
DontNeed
Data will not be accessed soon.
NoReuse
Data will be accessed exactly once.
Trait Implementations
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