Enum asciii::storage::StorageSelection [] [src]

pub enum StorageSelection {
    DirAndSearch(StorageDirVec<String>),
    Dir(StorageDir),
    Paths(Vec<PathBuf>),
    Unintiailzed,
}

A description from which we can open Storables

Variants

Trait Implementations

impl Debug for StorageSelection
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for StorageSelection
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Into<StorageSelection> for &'a StorageSelection
[src]

[src]

Performs the conversion.

impl Into<StorageSelection> for StorageDir
[src]

[src]

Performs the conversion.

impl Default for StorageSelection
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations