pub struct OrchestrationHistoryEvent {
pub event_type: String,
pub orchestration_status: Option<OrchestrationRuntimeStatus>,
pub function_name: Option<String>,
pub result: Option<Value>,
pub scheduled_time: Option<DateTime<Utc>>,
pub timestamp: DateTime<Utc>,
}
Expand description
Represents an orchestration history event.
Fields§
§event_type: String
The event type.
orchestration_status: Option<OrchestrationRuntimeStatus>
The orchestration status for the event.
function_name: Option<String>
The function name for the event.
result: Option<Value>
The result (output) for the event.
scheduled_time: Option<DateTime<Utc>>
The scheduled time for the event.
timestamp: DateTime<Utc>
The timestamp for the event.
Trait Implementations§
Source§impl Clone for OrchestrationHistoryEvent
impl Clone for OrchestrationHistoryEvent
Source§fn clone(&self) -> OrchestrationHistoryEvent
fn clone(&self) -> OrchestrationHistoryEvent
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 OrchestrationHistoryEvent
impl Debug for OrchestrationHistoryEvent
Source§impl<'de> Deserialize<'de> for OrchestrationHistoryEvent
impl<'de> Deserialize<'de> for OrchestrationHistoryEvent
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 OrchestrationHistoryEvent
impl RefUnwindSafe for OrchestrationHistoryEvent
impl Send for OrchestrationHistoryEvent
impl Sync for OrchestrationHistoryEvent
impl Unpin for OrchestrationHistoryEvent
impl UnwindSafe for OrchestrationHistoryEvent
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