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