pub struct OrchestrationStatus {
pub runtime_status: OrchestrationRuntimeStatus,
pub input: Option<Value>,
pub custom_status: Option<Value>,
pub output: Option<Value>,
pub created_time: DateTime<Utc>,
pub history_events: Option<Vec<OrchestrationHistoryEvent>>,
}
Expand description
Represents an orchestration’s status.
Fields§
§runtime_status: OrchestrationRuntimeStatus
The runtime status of the orchestration.
input: Option<Value>
The input of the orchestration.
custom_status: Option<Value>
The custom status of the orchestration.
output: Option<Value>
The output of the orchestration.
created_time: DateTime<Utc>
The created time of the orchestration.
history_events: Option<Vec<OrchestrationHistoryEvent>>
The event history of the orchestration.
Trait Implementations§
Source§impl Clone for OrchestrationStatus
impl Clone for OrchestrationStatus
Source§fn clone(&self) -> OrchestrationStatus
fn clone(&self) -> OrchestrationStatus
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 OrchestrationStatus
impl Debug for OrchestrationStatus
Source§impl<'de> Deserialize<'de> for OrchestrationStatus
impl<'de> Deserialize<'de> for OrchestrationStatus
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
Auto Trait Implementations§
impl Freeze for OrchestrationStatus
impl RefUnwindSafe for OrchestrationStatus
impl Send for OrchestrationStatus
impl Sync for OrchestrationStatus
impl Unpin for OrchestrationStatus
impl UnwindSafe for OrchestrationStatus
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