pub struct DiskMigrationStep {
pub copying_source_disk_snapshot: Option<CopyingSourceDiskSnapshotStep>,
pub creating_source_disk_snapshot: Option<CreatingSourceDiskSnapshotStep>,
pub end_time: Option<DateTime<Utc>>,
pub provisioning_target_disk: Option<ProvisioningTargetDiskStep>,
pub start_time: Option<DateTime<Utc>>,
}Expand description
DiskMigrationStep holds information about the disk migration step progress.
This type is not used in any activity, and only used as part of another schema.
Fields§
§copying_source_disk_snapshot: Option<CopyingSourceDiskSnapshotStep>Copying source disk snapshot step.
creating_source_disk_snapshot: Option<CreatingSourceDiskSnapshotStep>Creating source disk snapshot step.
end_time: Option<DateTime<Utc>>Output only. The time the step has ended.
provisioning_target_disk: Option<ProvisioningTargetDiskStep>Creating target disk step.
start_time: Option<DateTime<Utc>>Output only. The time the step has started.
Trait Implementations§
Source§impl Clone for DiskMigrationStep
impl Clone for DiskMigrationStep
Source§fn clone(&self) -> DiskMigrationStep
fn clone(&self) -> DiskMigrationStep
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 DiskMigrationStep
impl Debug for DiskMigrationStep
Source§impl Default for DiskMigrationStep
impl Default for DiskMigrationStep
Source§fn default() -> DiskMigrationStep
fn default() -> DiskMigrationStep
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DiskMigrationStep
impl<'de> Deserialize<'de> for DiskMigrationStep
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 Serialize for DiskMigrationStep
impl Serialize for DiskMigrationStep
impl Part for DiskMigrationStep
Auto Trait Implementations§
impl Freeze for DiskMigrationStep
impl RefUnwindSafe for DiskMigrationStep
impl Send for DiskMigrationStep
impl Sync for DiskMigrationStep
impl Unpin for DiskMigrationStep
impl UnwindSafe for DiskMigrationStep
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