pub struct RestoreApplyDryRunOperation {
pub sequence: usize,
pub operation: RestoreApplyOperationKind,
pub restore_group: u16,
pub phase_order: usize,
pub source_canister: String,
pub target_canister: String,
pub role: String,
pub snapshot_id: Option<String>,
pub artifact_path: Option<String>,
pub verification_kind: Option<String>,
pub verification_method: Option<String>,
}Expand description
RestoreApplyDryRunOperation
Fields§
§sequence: usize§operation: RestoreApplyOperationKind§restore_group: u16§phase_order: usize§source_canister: String§target_canister: String§role: String§snapshot_id: Option<String>§artifact_path: Option<String>§verification_kind: Option<String>§verification_method: Option<String>Trait Implementations§
Source§impl Clone for RestoreApplyDryRunOperation
impl Clone for RestoreApplyDryRunOperation
Source§fn clone(&self) -> RestoreApplyDryRunOperation
fn clone(&self) -> RestoreApplyDryRunOperation
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 RestoreApplyDryRunOperation
impl Debug for RestoreApplyDryRunOperation
Source§impl<'de> Deserialize<'de> for RestoreApplyDryRunOperation
impl<'de> Deserialize<'de> for RestoreApplyDryRunOperation
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
impl Eq for RestoreApplyDryRunOperation
impl StructuralPartialEq for RestoreApplyDryRunOperation
Auto Trait Implementations§
impl Freeze for RestoreApplyDryRunOperation
impl RefUnwindSafe for RestoreApplyDryRunOperation
impl Send for RestoreApplyDryRunOperation
impl Sync for RestoreApplyDryRunOperation
impl Unpin for RestoreApplyDryRunOperation
impl UnsafeUnpin for RestoreApplyDryRunOperation
impl UnwindSafe for RestoreApplyDryRunOperation
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