pub struct TaskOrchestrationQueuedPlan {
pub assign_time: Option<OffsetDateTime>,
pub definition: Option<TaskOrchestrationOwner>,
pub owner: Option<TaskOrchestrationOwner>,
pub plan_group: Option<String>,
pub plan_id: Option<String>,
pub pool_id: Option<i32>,
pub queue_position: Option<i32>,
pub queue_time: Option<OffsetDateTime>,
pub scope_identifier: Option<String>,
}
Expand description
Fields§
§assign_time: Option<OffsetDateTime>
§definition: Option<TaskOrchestrationOwner>
§owner: Option<TaskOrchestrationOwner>
§plan_group: Option<String>
§plan_id: Option<String>
§pool_id: Option<i32>
§queue_position: Option<i32>
§queue_time: Option<OffsetDateTime>
§scope_identifier: Option<String>
Implementations§
Trait Implementations§
source§impl Clone for TaskOrchestrationQueuedPlan
impl Clone for TaskOrchestrationQueuedPlan
source§fn clone(&self) -> TaskOrchestrationQueuedPlan
fn clone(&self) -> TaskOrchestrationQueuedPlan
Returns a copy 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 Debug for TaskOrchestrationQueuedPlan
impl Debug for TaskOrchestrationQueuedPlan
source§impl Default for TaskOrchestrationQueuedPlan
impl Default for TaskOrchestrationQueuedPlan
source§fn default() -> TaskOrchestrationQueuedPlan
fn default() -> TaskOrchestrationQueuedPlan
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TaskOrchestrationQueuedPlan
impl<'de> Deserialize<'de> for TaskOrchestrationQueuedPlan
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 TaskOrchestrationQueuedPlan
impl PartialEq for TaskOrchestrationQueuedPlan
source§fn eq(&self, other: &TaskOrchestrationQueuedPlan) -> bool
fn eq(&self, other: &TaskOrchestrationQueuedPlan) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TaskOrchestrationQueuedPlan
Auto Trait Implementations§
impl RefUnwindSafe for TaskOrchestrationQueuedPlan
impl Send for TaskOrchestrationQueuedPlan
impl Sync for TaskOrchestrationQueuedPlan
impl Unpin for TaskOrchestrationQueuedPlan
impl UnwindSafe for TaskOrchestrationQueuedPlan
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