pub enum AnyStoreFileMetadata {
Http(HttpStoreFileMetadata),
Local(LocalStoreFileMetadata),
PCloud(PCloudStoreFileMetadata),
}Variants§
Trait Implementations§
Source§impl Clone for AnyStoreFileMetadata
impl Clone for AnyStoreFileMetadata
Source§fn clone(&self) -> AnyStoreFileMetadata
fn clone(&self) -> AnyStoreFileMetadata
Returns a copy 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 AnyStoreFileMetadata
impl Debug for AnyStoreFileMetadata
Source§impl From<HttpStoreFileMetadata> for AnyStoreFileMetadata
impl From<HttpStoreFileMetadata> for AnyStoreFileMetadata
Source§fn from(value: HttpStoreFileMetadata) -> Self
fn from(value: HttpStoreFileMetadata) -> Self
Converts to this type from the input type.
Source§impl From<LocalStoreFileMetadata> for AnyStoreFileMetadata
impl From<LocalStoreFileMetadata> for AnyStoreFileMetadata
Source§fn from(value: LocalStoreFileMetadata) -> Self
fn from(value: LocalStoreFileMetadata) -> Self
Converts to this type from the input type.
Source§impl From<PCloudStoreFileMetadata> for AnyStoreFileMetadata
impl From<PCloudStoreFileMetadata> for AnyStoreFileMetadata
Source§fn from(value: PCloudStoreFileMetadata) -> Self
fn from(value: PCloudStoreFileMetadata) -> Self
Converts to this type from the input type.
Source§impl StoreMetadata for AnyStoreFileMetadata
impl StoreMetadata for AnyStoreFileMetadata
Auto Trait Implementations§
impl Freeze for AnyStoreFileMetadata
impl RefUnwindSafe for AnyStoreFileMetadata
impl Send for AnyStoreFileMetadata
impl Sync for AnyStoreFileMetadata
impl Unpin for AnyStoreFileMetadata
impl UnwindSafe for AnyStoreFileMetadata
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