pub struct BackupReceipt {
pub plan_id: String,
pub operation_id: String,
pub status: BackupReceiptStatus,
pub target_canister_id: Option<String>,
pub snapshot_id: Option<String>,
pub message: Option<String>,
}Expand description
BackupReceipt
Fields§
§plan_id: String§operation_id: String§status: BackupReceiptStatus§target_canister_id: Option<String>§snapshot_id: Option<String>§message: Option<String>Trait Implementations§
Source§impl Clone for BackupReceipt
impl Clone for BackupReceipt
Source§fn clone(&self) -> BackupReceipt
fn clone(&self) -> BackupReceipt
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 BackupReceipt
impl Debug for BackupReceipt
Source§impl<'de> Deserialize<'de> for BackupReceipt
impl<'de> Deserialize<'de> for BackupReceipt
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 BackupReceipt
impl PartialEq for BackupReceipt
Source§fn eq(&self, other: &BackupReceipt) -> bool
fn eq(&self, other: &BackupReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BackupReceipt
impl Serialize for BackupReceipt
impl Eq for BackupReceipt
impl StructuralPartialEq for BackupReceipt
Auto Trait Implementations§
impl Freeze for BackupReceipt
impl RefUnwindSafe for BackupReceipt
impl Send for BackupReceipt
impl Sync for BackupReceipt
impl Unpin for BackupReceipt
impl UnsafeUnpin for BackupReceipt
impl UnwindSafe for BackupReceipt
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