pub struct TaskOrchestrationPlanGroupReference {
pub plan_group: Option<String>,
pub project_id: Option<String>,
}
Expand description
Represents a reference to a plan group.
Fields§
§plan_group: Option<String>
The name of the plan group.
project_id: Option<String>
The project ID.
Implementations§
Trait Implementations§
Source§impl Clone for TaskOrchestrationPlanGroupReference
impl Clone for TaskOrchestrationPlanGroupReference
Source§fn clone(&self) -> TaskOrchestrationPlanGroupReference
fn clone(&self) -> TaskOrchestrationPlanGroupReference
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 Default for TaskOrchestrationPlanGroupReference
impl Default for TaskOrchestrationPlanGroupReference
Source§fn default() -> TaskOrchestrationPlanGroupReference
fn default() -> TaskOrchestrationPlanGroupReference
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskOrchestrationPlanGroupReference
impl<'de> Deserialize<'de> for TaskOrchestrationPlanGroupReference
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 TaskOrchestrationPlanGroupReference
impl PartialEq for TaskOrchestrationPlanGroupReference
Source§fn eq(&self, other: &TaskOrchestrationPlanGroupReference) -> bool
fn eq(&self, other: &TaskOrchestrationPlanGroupReference) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TaskOrchestrationPlanGroupReference
Auto Trait Implementations§
impl Freeze for TaskOrchestrationPlanGroupReference
impl RefUnwindSafe for TaskOrchestrationPlanGroupReference
impl Send for TaskOrchestrationPlanGroupReference
impl Sync for TaskOrchestrationPlanGroupReference
impl Unpin for TaskOrchestrationPlanGroupReference
impl UnwindSafe for TaskOrchestrationPlanGroupReference
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