pub struct QuiescencePreflightReceipt {
pub plan_id: String,
pub preflight_id: String,
pub quiescence_policy: QuiescencePolicy,
pub accepted: bool,
pub targets: Vec<QuiescencePreflightTarget>,
pub validated_at: String,
pub expires_at: String,
pub message: Option<String>,
}Expand description
QuiescencePreflightReceipt
Fields§
§plan_id: String§preflight_id: String§quiescence_policy: QuiescencePolicy§accepted: bool§targets: Vec<QuiescencePreflightTarget>§validated_at: String§expires_at: String§message: Option<String>Trait Implementations§
Source§impl Clone for QuiescencePreflightReceipt
impl Clone for QuiescencePreflightReceipt
Source§fn clone(&self) -> QuiescencePreflightReceipt
fn clone(&self) -> QuiescencePreflightReceipt
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 QuiescencePreflightReceipt
impl Debug for QuiescencePreflightReceipt
Source§impl<'de> Deserialize<'de> for QuiescencePreflightReceipt
impl<'de> Deserialize<'de> for QuiescencePreflightReceipt
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 QuiescencePreflightReceipt
impl PartialEq for QuiescencePreflightReceipt
Source§fn eq(&self, other: &QuiescencePreflightReceipt) -> bool
fn eq(&self, other: &QuiescencePreflightReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for QuiescencePreflightReceipt
impl StructuralPartialEq for QuiescencePreflightReceipt
Auto Trait Implementations§
impl Freeze for QuiescencePreflightReceipt
impl RefUnwindSafe for QuiescencePreflightReceipt
impl Send for QuiescencePreflightReceipt
impl Sync for QuiescencePreflightReceipt
impl Unpin for QuiescencePreflightReceipt
impl UnsafeUnpin for QuiescencePreflightReceipt
impl UnwindSafe for QuiescencePreflightReceipt
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