pub struct EpisodeInvocationRecord {
pub event_id: EventId,
pub decision: Decision,
pub schedule_at: Option<EventTime>,
pub episode_id: EpisodeId,
pub deadline: Option<Duration>,
pub termination: Option<RunTermination>,
pub retry_count: usize,
pub effects: Vec<CapturedActionEffect>,
pub intent_acks: Vec<CapturedIntentAck>,
pub interruption: Option<String>,
}Fields§
§event_id: EventId§decision: Decision§schedule_at: Option<EventTime>§episode_id: EpisodeId§deadline: Option<Duration>§termination: Option<RunTermination>§retry_count: usize§effects: Vec<CapturedActionEffect>§intent_acks: Vec<CapturedIntentAck>§interruption: Option<String>Trait Implementations§
Source§impl Clone for EpisodeInvocationRecord
impl Clone for EpisodeInvocationRecord
Source§fn clone(&self) -> EpisodeInvocationRecord
fn clone(&self) -> EpisodeInvocationRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EpisodeInvocationRecord
impl Debug for EpisodeInvocationRecord
Source§impl<'de> Deserialize<'de> for EpisodeInvocationRecord
impl<'de> Deserialize<'de> for EpisodeInvocationRecord
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 From<&DecisionLogEntry> for EpisodeInvocationRecord
impl From<&DecisionLogEntry> for EpisodeInvocationRecord
Source§fn from(entry: &DecisionLogEntry) -> Self
fn from(entry: &DecisionLogEntry) -> Self
Converts to this type from the input type.
Source§impl PartialEq for EpisodeInvocationRecord
impl PartialEq for EpisodeInvocationRecord
Source§fn eq(&self, other: &EpisodeInvocationRecord) -> bool
fn eq(&self, other: &EpisodeInvocationRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EpisodeInvocationRecord
impl Serialize for EpisodeInvocationRecord
impl StructuralPartialEq for EpisodeInvocationRecord
Auto Trait Implementations§
impl Freeze for EpisodeInvocationRecord
impl RefUnwindSafe for EpisodeInvocationRecord
impl Send for EpisodeInvocationRecord
impl Sync for EpisodeInvocationRecord
impl Unpin for EpisodeInvocationRecord
impl UnsafeUnpin for EpisodeInvocationRecord
impl UnwindSafe for EpisodeInvocationRecord
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