pub struct BackupExecutionPreflightReceipts {
pub plan_id: String,
pub preflight_id: String,
pub validated_at: String,
pub expires_at: String,
pub topology: TopologyPreflightReceipt,
pub control_authority: Vec<ControlAuthorityReceipt>,
pub snapshot_read_authority: Vec<SnapshotReadAuthorityReceipt>,
pub quiescence: QuiescencePreflightReceipt,
}Expand description
BackupExecutionPreflightReceipts
Fields§
§plan_id: String§preflight_id: String§validated_at: String§expires_at: String§topology: TopologyPreflightReceipt§quiescence: QuiescencePreflightReceiptTrait Implementations§
Source§impl Clone for BackupExecutionPreflightReceipts
impl Clone for BackupExecutionPreflightReceipts
Source§fn clone(&self) -> BackupExecutionPreflightReceipts
fn clone(&self) -> BackupExecutionPreflightReceipts
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<'de> Deserialize<'de> for BackupExecutionPreflightReceipts
impl<'de> Deserialize<'de> for BackupExecutionPreflightReceipts
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 BackupExecutionPreflightReceipts
impl PartialEq for BackupExecutionPreflightReceipts
Source§fn eq(&self, other: &BackupExecutionPreflightReceipts) -> bool
fn eq(&self, other: &BackupExecutionPreflightReceipts) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BackupExecutionPreflightReceipts
impl StructuralPartialEq for BackupExecutionPreflightReceipts
Auto Trait Implementations§
impl Freeze for BackupExecutionPreflightReceipts
impl RefUnwindSafe for BackupExecutionPreflightReceipts
impl Send for BackupExecutionPreflightReceipts
impl Sync for BackupExecutionPreflightReceipts
impl Unpin for BackupExecutionPreflightReceipts
impl UnsafeUnpin for BackupExecutionPreflightReceipts
impl UnwindSafe for BackupExecutionPreflightReceipts
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