pub trait DriveFactory { fn create(&self, target: &str) -> Result<Box<dyn Drive>>; }
Trait to instantiate drives of a given type.
Creates a new drive for target.
target