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