pub enum SyncLevel {
None = 0,
Data = 2,
Full = 4,
}
Expand description
Synchronization levels associated with I/O operations
Variants§
None = 0
No synchronization requirement
Data = 2
Data is written to device, but not necessarily meta data
Full = 4
Data and associated meta data is written to device
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncLevel
impl RefUnwindSafe for SyncLevel
impl Send for SyncLevel
impl Sync for SyncLevel
impl Unpin for SyncLevel
impl UnwindSafe for SyncLevel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more