pub struct WorkflowPreflightPlan {
pub schema: String,
pub id: String,
pub issued_at: String,
pub parent_task: WorkflowPreflightParentTask,
pub child_tasks: Vec<WorkflowPreflightChildTask>,
pub route_plans: Vec<WorkflowRoutePlanPreflight>,
pub approvals: Vec<WorkflowApprovalPreflight>,
pub registry_support: WorkflowRegistrySupport,
pub budget_pool: WorkflowBudgetPool,
pub revocation: WorkflowRevocationPreflight,
pub planning_artifacts: Vec<WorkflowPlanningArtifact>,
}Fields§
§schema: String§id: String§issued_at: String§parent_task: WorkflowPreflightParentTask§child_tasks: Vec<WorkflowPreflightChildTask>§route_plans: Vec<WorkflowRoutePlanPreflight>§approvals: Vec<WorkflowApprovalPreflight>§registry_support: WorkflowRegistrySupport§budget_pool: WorkflowBudgetPool§revocation: WorkflowRevocationPreflight§planning_artifacts: Vec<WorkflowPlanningArtifact>Trait Implementations§
Source§impl Clone for WorkflowPreflightPlan
impl Clone for WorkflowPreflightPlan
Source§fn clone(&self) -> WorkflowPreflightPlan
fn clone(&self) -> WorkflowPreflightPlan
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 WorkflowPreflightPlan
impl Debug for WorkflowPreflightPlan
Source§impl<'de> Deserialize<'de> for WorkflowPreflightPlan
impl<'de> Deserialize<'de> for WorkflowPreflightPlan
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<WorkflowPreflightPlan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<WorkflowPreflightPlan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for WorkflowPreflightPlan
Source§impl PartialEq for WorkflowPreflightPlan
impl PartialEq for WorkflowPreflightPlan
Source§impl Serialize for WorkflowPreflightPlan
impl Serialize for WorkflowPreflightPlan
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for WorkflowPreflightPlan
Auto Trait Implementations§
impl Freeze for WorkflowPreflightPlan
impl RefUnwindSafe for WorkflowPreflightPlan
impl Send for WorkflowPreflightPlan
impl Sync for WorkflowPreflightPlan
impl Unpin for WorkflowPreflightPlan
impl UnsafeUnpin for WorkflowPreflightPlan
impl UnwindSafe for WorkflowPreflightPlan
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