pub enum BackupExecutionOperationState {
Ready,
Pending,
Blocked,
Completed,
Failed,
Skipped,
}Expand description
BackupExecutionOperationState
Variants§
Trait Implementations§
Source§impl Clone for BackupExecutionOperationState
impl Clone for BackupExecutionOperationState
Source§fn clone(&self) -> BackupExecutionOperationState
fn clone(&self) -> BackupExecutionOperationState
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 moreSource§impl<'de> Deserialize<'de> for BackupExecutionOperationState
impl<'de> Deserialize<'de> for BackupExecutionOperationState
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 PartialEq for BackupExecutionOperationState
impl PartialEq for BackupExecutionOperationState
Source§fn eq(&self, other: &BackupExecutionOperationState) -> bool
fn eq(&self, other: &BackupExecutionOperationState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BackupExecutionOperationState
impl StructuralPartialEq for BackupExecutionOperationState
Auto Trait Implementations§
impl Freeze for BackupExecutionOperationState
impl RefUnwindSafe for BackupExecutionOperationState
impl Send for BackupExecutionOperationState
impl Sync for BackupExecutionOperationState
impl Unpin for BackupExecutionOperationState
impl UnsafeUnpin for BackupExecutionOperationState
impl UnwindSafe for BackupExecutionOperationState
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