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