pub struct ArtifactResumeReport {
pub canister_id: String,
pub snapshot_id: String,
pub state: ArtifactState,
pub resume_action: ResumeAction,
pub artifact_path: String,
pub temp_path: Option<String>,
pub updated_at: String,
}Expand description
ArtifactResumeReport
Fields§
§canister_id: String§snapshot_id: String§state: ArtifactState§resume_action: ResumeAction§artifact_path: String§temp_path: Option<String>§updated_at: StringTrait Implementations§
Source§impl Clone for ArtifactResumeReport
impl Clone for ArtifactResumeReport
Source§fn clone(&self) -> ArtifactResumeReport
fn clone(&self) -> ArtifactResumeReport
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 ArtifactResumeReport
impl Debug for ArtifactResumeReport
Source§impl<'de> Deserialize<'de> for ArtifactResumeReport
impl<'de> Deserialize<'de> for ArtifactResumeReport
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 ArtifactResumeReport
impl PartialEq for ArtifactResumeReport
Source§impl Serialize for ArtifactResumeReport
impl Serialize for ArtifactResumeReport
impl Eq for ArtifactResumeReport
impl StructuralPartialEq for ArtifactResumeReport
Auto Trait Implementations§
impl Freeze for ArtifactResumeReport
impl RefUnwindSafe for ArtifactResumeReport
impl Send for ArtifactResumeReport
impl Sync for ArtifactResumeReport
impl Unpin for ArtifactResumeReport
impl UnsafeUnpin for ArtifactResumeReport
impl UnwindSafe for ArtifactResumeReport
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