Enum sherwood::Durability [-] [+] [src]

pub enum Durability {
    Sync,
    DirectSync,
    Async,
    DirectAsync,
}

Durability options

Variants

Sync

Synchronous commit through OS page cache.

DirectSync

Synchronous commit through the direct IO option to bypass the OS page cache.

Async

Asynchronous commit through OS page cache.

DirectAsync

Asynchronous commit through the direct IO option to bypass the OS page cache.

Trait Implementations

Derived Implementations

impl Clone for Durability

fn clone(&self) -> Durability

fn clone_from(&mut self, source: &Self)

impl Copy for Durability