pub enum CloudSnapshotOperationStatus {
Queued,
InProgress,
Succeeded,
Failed,
}Expand description
Status of an asynchronous cloud snapshot operation.
Variants§
Queued
Accepted but not yet started.
InProgress
The operation is running.
Succeeded
The snapshot is complete and available.
Failed
The operation failed.
Trait Implementations§
Source§impl Clone for CloudSnapshotOperationStatus
impl Clone for CloudSnapshotOperationStatus
Source§fn clone(&self) -> CloudSnapshotOperationStatus
fn clone(&self) -> CloudSnapshotOperationStatus
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 moreimpl Copy for CloudSnapshotOperationStatus
Source§impl Debug for CloudSnapshotOperationStatus
impl Debug for CloudSnapshotOperationStatus
Source§impl<'de> Deserialize<'de> for CloudSnapshotOperationStatus
impl<'de> Deserialize<'de> for CloudSnapshotOperationStatus
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
impl Eq for CloudSnapshotOperationStatus
impl StructuralPartialEq for CloudSnapshotOperationStatus
Auto Trait Implementations§
impl Freeze for CloudSnapshotOperationStatus
impl RefUnwindSafe for CloudSnapshotOperationStatus
impl Send for CloudSnapshotOperationStatus
impl Sync for CloudSnapshotOperationStatus
impl Unpin for CloudSnapshotOperationStatus
impl UnsafeUnpin for CloudSnapshotOperationStatus
impl UnwindSafe for CloudSnapshotOperationStatus
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