[][src]Struct azure_functions_durable::OrchestrationHistoryEvent

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>,
}

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

impl Clone for OrchestrationHistoryEvent[src]

impl Debug for OrchestrationHistoryEvent[src]

impl<'de> Deserialize<'de> for OrchestrationHistoryEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]