pub struct ServiceEndpointExecutionData {
pub definition: Option<TaskOrchestrationOwner>,
pub finish_time: Option<OffsetDateTime>,
pub id: Option<i64>,
pub owner: Option<TaskOrchestrationOwner>,
pub plan_type: Option<String>,
pub result: Option<Result>,
pub start_time: Option<OffsetDateTime>,
}Expand description
Represents service endpoint execution data.
Fields§
§definition: Option<TaskOrchestrationOwner>§finish_time: Option<OffsetDateTime>Gets the finish time of service endpoint execution.
id: Option<i64>Gets the Id of service endpoint execution data.
owner: Option<TaskOrchestrationOwner>§plan_type: Option<String>Gets the plan type of service endpoint execution data.
result: Option<Result>Gets the result of service endpoint execution.
start_time: Option<OffsetDateTime>Gets the start time of service endpoint execution.
Implementations§
Trait Implementations§
Source§impl Clone for ServiceEndpointExecutionData
impl Clone for ServiceEndpointExecutionData
Source§fn clone(&self) -> ServiceEndpointExecutionData
fn clone(&self) -> ServiceEndpointExecutionData
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 ServiceEndpointExecutionData
impl Debug for ServiceEndpointExecutionData
Source§impl Default for ServiceEndpointExecutionData
impl Default for ServiceEndpointExecutionData
Source§fn default() -> ServiceEndpointExecutionData
fn default() -> ServiceEndpointExecutionData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceEndpointExecutionData
impl<'de> Deserialize<'de> for ServiceEndpointExecutionData
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 ServiceEndpointExecutionData
impl PartialEq for ServiceEndpointExecutionData
Source§fn eq(&self, other: &ServiceEndpointExecutionData) -> bool
fn eq(&self, other: &ServiceEndpointExecutionData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ServiceEndpointExecutionData
Auto Trait Implementations§
impl Freeze for ServiceEndpointExecutionData
impl RefUnwindSafe for ServiceEndpointExecutionData
impl Send for ServiceEndpointExecutionData
impl Sync for ServiceEndpointExecutionData
impl Unpin for ServiceEndpointExecutionData
impl UnwindSafe for ServiceEndpointExecutionData
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