pub struct MigrationPlan {
pub source: SourceInfo,
pub helper_image: String,
pub images: Vec<ImagePlan>,
pub volumes: Vec<VolumePlan>,
pub networks: Vec<NetworkPlan>,
pub containers: Vec<ContainerPlan>,
pub unsupported_resources: Vec<String>,
pub replacements: ReplacementSummary,
pub blockers: Vec<RunningVolumeBlocker>,
}Expand description
A fully normalized migration plan.
Fields§
§source: SourceInfoSource identity.
helper_image: StringHelper image reference used for temporary volume-mount containers.
images: Vec<ImagePlan>Images that will be imported into ArcBox.
volumes: Vec<VolumePlan>Volumes that will be imported into ArcBox.
networks: Vec<NetworkPlan>Networks that will be recreated in ArcBox.
containers: Vec<ContainerPlan>Containers that will be recreated in ArcBox.
unsupported_resources: Vec<String>Resources that are out of scope for v1.
replacements: ReplacementSummaryReplace actions that require confirmation.
blockers: Vec<RunningVolumeBlocker>Source volume blockers caused by running containers.
Trait Implementations§
Source§impl Clone for MigrationPlan
impl Clone for MigrationPlan
Source§fn clone(&self) -> MigrationPlan
fn clone(&self) -> MigrationPlan
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 Debug for MigrationPlan
impl Debug for MigrationPlan
Source§impl<'de> Deserialize<'de> for MigrationPlan
impl<'de> Deserialize<'de> for MigrationPlan
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 MigrationPlan
impl PartialEq for MigrationPlan
Source§impl Serialize for MigrationPlan
impl Serialize for MigrationPlan
impl StructuralPartialEq for MigrationPlan
Auto Trait Implementations§
impl Freeze for MigrationPlan
impl RefUnwindSafe for MigrationPlan
impl Send for MigrationPlan
impl Sync for MigrationPlan
impl Unpin for MigrationPlan
impl UnsafeUnpin for MigrationPlan
impl UnwindSafe for MigrationPlan
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