pub struct RestoreRunOperationReceipt {
pub event: &'static str,
pub sequence: usize,
pub operation: RestoreApplyOperationKind,
pub target_canister: String,
pub state: &'static str,
pub updated_at: Option<String>,
pub command: Option<RestoreApplyRunnerCommand>,
pub status: Option<String>,
}Expand description
RestoreRunOperationReceipt
Fields§
§event: &'static str§sequence: usize§operation: RestoreApplyOperationKind§target_canister: String§state: &'static str§updated_at: Option<String>§command: Option<RestoreApplyRunnerCommand>§status: Option<String>Trait Implementations§
Source§impl Clone for RestoreRunOperationReceipt
impl Clone for RestoreRunOperationReceipt
Source§fn clone(&self) -> RestoreRunOperationReceipt
fn clone(&self) -> RestoreRunOperationReceipt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RestoreRunOperationReceipt
impl Debug for RestoreRunOperationReceipt
Auto Trait Implementations§
impl Freeze for RestoreRunOperationReceipt
impl RefUnwindSafe for RestoreRunOperationReceipt
impl Send for RestoreRunOperationReceipt
impl Sync for RestoreRunOperationReceipt
impl Unpin for RestoreRunOperationReceipt
impl UnsafeUnpin for RestoreRunOperationReceipt
impl UnwindSafe for RestoreRunOperationReceipt
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