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