pub enum MobileAppContentFileUploadState {
Show 16 variants
CommitFileTimedOut,
CommitFileFailed,
CommitFilePending,
CommitFileSuccess,
AzureStorageUriRenewalTimedOut,
AzureStorageUriRenewalFailed,
AzureStorageUriRenewalPending,
AzureStorageUriRenewalSuccess,
AzureStorageUriRequestTimedOut,
AzureStorageUriRequestFailed,
AzureStorageUriRequestPending,
AzureStorageUriRequestSuccess,
Unknown,
Error,
TransientError,
Success,
}
Variants§
CommitFileTimedOut
CommitFileFailed
CommitFilePending
CommitFileSuccess
AzureStorageUriRenewalTimedOut
AzureStorageUriRenewalFailed
AzureStorageUriRenewalPending
AzureStorageUriRenewalSuccess
AzureStorageUriRequestTimedOut
AzureStorageUriRequestFailed
AzureStorageUriRequestPending
AzureStorageUriRequestSuccess
Unknown
Error
TransientError
Success
Trait Implementations§
Source§impl Clone for MobileAppContentFileUploadState
impl Clone for MobileAppContentFileUploadState
Source§fn clone(&self) -> MobileAppContentFileUploadState
fn clone(&self) -> MobileAppContentFileUploadState
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<'de> Deserialize<'de> for MobileAppContentFileUploadState
impl<'de> Deserialize<'de> for MobileAppContentFileUploadState
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
Source§impl Ord for MobileAppContentFileUploadState
impl Ord for MobileAppContentFileUploadState
Source§fn cmp(&self, other: &MobileAppContentFileUploadState) -> Ordering
fn cmp(&self, other: &MobileAppContentFileUploadState) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MobileAppContentFileUploadState
impl PartialEq for MobileAppContentFileUploadState
Source§fn eq(&self, other: &MobileAppContentFileUploadState) -> bool
fn eq(&self, other: &MobileAppContentFileUploadState) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for MobileAppContentFileUploadState
impl PartialOrd for MobileAppContentFileUploadState
impl Eq for MobileAppContentFileUploadState
impl StructuralPartialEq for MobileAppContentFileUploadState
Auto Trait Implementations§
impl Freeze for MobileAppContentFileUploadState
impl RefUnwindSafe for MobileAppContentFileUploadState
impl Send for MobileAppContentFileUploadState
impl Sync for MobileAppContentFileUploadState
impl Unpin for MobileAppContentFileUploadState
impl UnwindSafe for MobileAppContentFileUploadState
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