Enum cask::SyncStrategy [] [src]

pub enum SyncStrategy {
    Never,
    Always,
    Interval(usize),
}

Strategy used to synchronize writes to disk.

Variants

Never explicitly synchronize writes (the OS manages it).

Always synchronize writes.

Synchronize writes in the background every n milliseconds.

Trait Implementations

impl Clone for SyncStrategy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SyncStrategy
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.