pub trait StorageProviderSpec {
    fn name(&self) -> String;
    fn slug(&self) -> String;
    fn uri(&self) -> String;
}

Required Methods

Implementors