pub enum StorageProviderType {
Cos,
Gcs,
Oss,
S3,
Local,
AzureBlob,
}Expand description
存储服务提供商类型
Variants§
Trait Implementations§
Source§impl Clone for StorageProviderType
impl Clone for StorageProviderType
Source§fn clone(&self) -> StorageProviderType
fn clone(&self) -> StorageProviderType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StorageProviderType
impl Debug for StorageProviderType
Source§impl<'de> Deserialize<'de> for StorageProviderType
impl<'de> Deserialize<'de> for StorageProviderType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StorageProviderType
impl RefUnwindSafe for StorageProviderType
impl Send for StorageProviderType
impl Sync for StorageProviderType
impl Unpin for StorageProviderType
impl UnsafeUnpin for StorageProviderType
impl UnwindSafe for StorageProviderType
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