pub enum MigrationStatus {
Show 15 variants
none,
setup,
cancelling,
cancelled,
active,
postcopy_active,
postcopy_paused,
postcopy_recover_setup,
postcopy_recover,
completed,
failed,
colo,
pre_switchover,
device,
wait_unplug,
}
Variants§
none
setup
cancelling
cancelled
active
postcopy_active
postcopy_paused
postcopy_recover_setup
postcopy_recover
completed
failed
colo
pre_switchover
device
wait_unplug
Trait Implementations§
Source§impl Clone for MigrationStatus
impl Clone for MigrationStatus
Source§fn clone(&self) -> MigrationStatus
fn clone(&self) -> MigrationStatus
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 MigrationStatus
impl Debug for MigrationStatus
Source§impl<'de> Deserialize<'de> for MigrationStatus
impl<'de> Deserialize<'de> for MigrationStatus
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 Enum for MigrationStatus
impl Enum for MigrationStatus
Source§impl FromStr for MigrationStatus
impl FromStr for MigrationStatus
Source§impl Hash for MigrationStatus
impl Hash for MigrationStatus
Source§impl Ord for MigrationStatus
impl Ord for MigrationStatus
Source§fn cmp(&self, other: &MigrationStatus) -> Ordering
fn cmp(&self, other: &MigrationStatus) -> 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 MigrationStatus
impl PartialEq for MigrationStatus
Source§impl PartialOrd for MigrationStatus
impl PartialOrd for MigrationStatus
Source§impl Serialize for MigrationStatus
impl Serialize for MigrationStatus
impl Copy for MigrationStatus
impl Eq for MigrationStatus
impl StructuralPartialEq for MigrationStatus
Auto Trait Implementations§
impl Freeze for MigrationStatus
impl RefUnwindSafe for MigrationStatus
impl Send for MigrationStatus
impl Sync for MigrationStatus
impl Unpin for MigrationStatus
impl UnwindSafe for MigrationStatus
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