pub enum StorageProvider {
Local,
S3(S3Config),
AliyunOss(AliyunConfig),
TencentCos(TencentConfig),
QiniuKodo(QiniuConfig),
HuaweiObs(HuaweiConfig),
UpYun(UpYunConfig),
}Variants§
Local
S3(S3Config)
AliyunOss(AliyunConfig)
TencentCos(TencentConfig)
QiniuKodo(QiniuConfig)
HuaweiObs(HuaweiConfig)
UpYun(UpYunConfig)
Trait Implementations§
Source§impl Clone for StorageProvider
impl Clone for StorageProvider
Source§fn clone(&self) -> StorageProvider
fn clone(&self) -> StorageProvider
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StorageProvider
impl RefUnwindSafe for StorageProvider
impl Send for StorageProvider
impl Sync for StorageProvider
impl Unpin for StorageProvider
impl UnsafeUnpin for StorageProvider
impl UnwindSafe for StorageProvider
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more