pub struct TaskOrchestrationPlanReference {
pub orchestration_type: Option<i32>,
pub plan_id: String,
}Expand description
Represents a reference to an orchestration plan.
Fields§
§orchestration_type: Option<i32>The type of the plan.
plan_id: StringThe ID of the plan.
Implementations§
Trait Implementations§
Source§impl Clone for TaskOrchestrationPlanReference
impl Clone for TaskOrchestrationPlanReference
Source§fn clone(&self) -> TaskOrchestrationPlanReference
fn clone(&self) -> TaskOrchestrationPlanReference
Returns a duplicate of the value. Read more
1.0.0 · 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 TaskOrchestrationPlanReference
impl<'de> Deserialize<'de> for TaskOrchestrationPlanReference
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 TaskOrchestrationPlanReference
impl PartialEq for TaskOrchestrationPlanReference
Source§fn eq(&self, other: &TaskOrchestrationPlanReference) -> bool
fn eq(&self, other: &TaskOrchestrationPlanReference) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TaskOrchestrationPlanReference
Auto Trait Implementations§
impl Freeze for TaskOrchestrationPlanReference
impl RefUnwindSafe for TaskOrchestrationPlanReference
impl Send for TaskOrchestrationPlanReference
impl Sync for TaskOrchestrationPlanReference
impl Unpin for TaskOrchestrationPlanReference
impl UnwindSafe for TaskOrchestrationPlanReference
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