pub struct RestoreApplyArtifactCheck {
pub source_canister: String,
pub target_canister: String,
pub snapshot_id: String,
pub artifact_path: String,
pub resolved_path: String,
pub exists: bool,
pub checksum_algorithm: String,
pub checksum_expected: Option<String>,
pub checksum_actual: Option<String>,
pub checksum_verified: bool,
}Expand description
RestoreApplyArtifactCheck
Fields§
§source_canister: String§target_canister: String§snapshot_id: String§artifact_path: String§resolved_path: String§exists: bool§checksum_algorithm: String§checksum_expected: Option<String>§checksum_actual: Option<String>§checksum_verified: boolTrait Implementations§
Source§impl Clone for RestoreApplyArtifactCheck
impl Clone for RestoreApplyArtifactCheck
Source§fn clone(&self) -> RestoreApplyArtifactCheck
fn clone(&self) -> RestoreApplyArtifactCheck
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 RestoreApplyArtifactCheck
impl Debug for RestoreApplyArtifactCheck
Source§impl<'de> Deserialize<'de> for RestoreApplyArtifactCheck
impl<'de> Deserialize<'de> for RestoreApplyArtifactCheck
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 RestoreApplyArtifactCheck
impl StructuralPartialEq for RestoreApplyArtifactCheck
Auto Trait Implementations§
impl Freeze for RestoreApplyArtifactCheck
impl RefUnwindSafe for RestoreApplyArtifactCheck
impl Send for RestoreApplyArtifactCheck
impl Sync for RestoreApplyArtifactCheck
impl Unpin for RestoreApplyArtifactCheck
impl UnsafeUnpin for RestoreApplyArtifactCheck
impl UnwindSafe for RestoreApplyArtifactCheck
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