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
No advice; default heuristics apply.
Data will be accessed sequentially at ascending offsets.
Data will be accessed with an irregular access pattern.
Data will be accessed soon.
Data will not be accessed soon.
Data will be accessed exactly once.