Trait endbasic_std::storage::DriveFactory[][src]

pub trait DriveFactory {
    fn create(&self, target: &str) -> Result<Box<dyn Drive>>;
}
Expand description

Trait to instantiate drives of a given type.

Required methods

Creates a new drive for target.

Implementors