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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for SyncStrategy
[src]

[src]

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

[src]

This method tests for !=.