pub enum MigrationStage {
Prepare,
StopSourceContainers,
ImportImages,
ImportVolumes,
RecreateNetworks,
RecreateContainers,
StartContainers,
Cleanup,
Complete,
}Expand description
High-level migration stages.
Variants§
Prepare
Preparing the migration plan.
StopSourceContainers
Stopping source containers blocked on volume migration.
ImportImages
Importing images.
ImportVolumes
Importing volumes.
RecreateNetworks
Recreating networks.
RecreateContainers
Recreating containers.
StartContainers
Starting containers that were running on the source.
Cleanup
Cleaning up temporary resources.
Complete
Migration completed.
Implementations§
Trait Implementations§
Source§impl Clone for MigrationStage
impl Clone for MigrationStage
Source§fn clone(&self) -> MigrationStage
fn clone(&self) -> MigrationStage
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 MigrationStage
Source§impl Debug for MigrationStage
impl Debug for MigrationStage
impl Eq for MigrationStage
Source§impl PartialEq for MigrationStage
impl PartialEq for MigrationStage
impl StructuralPartialEq for MigrationStage
Auto Trait Implementations§
impl Freeze for MigrationStage
impl RefUnwindSafe for MigrationStage
impl Send for MigrationStage
impl Sync for MigrationStage
impl Unpin for MigrationStage
impl UnsafeUnpin for MigrationStage
impl UnwindSafe for MigrationStage
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.