Enum nix::sys::aio::AioFsyncMode
[−]
[src]
#[repr(i32)]pub enum AioFsyncMode { O_SYNC, O_DSYNC, }
Mode for AioCb::fsync
. Controls whether only data or both data and
metadata are synced.
Variants
O_SYNC
do it like fsync
O_DSYNC
on supported operating systems only, do it like fdatasync
Trait Implementations
impl Clone for AioFsyncMode
[src]
fn clone(&self) -> AioFsyncMode
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more