pub struct OutcomeRecord {
pub trigger_id: String,
pub idempotency_key: Option<String>,
pub finished_at: SystemTime,
pub stop_reason: StopReason,
pub response: Option<String>,
pub detail: Option<String>,
pub steps_executed: usize,
pub resume_token: Option<ResumeToken>,
}Fields§
§trigger_id: String§idempotency_key: Option<String>§finished_at: SystemTime§stop_reason: StopReason§response: Option<String>§detail: Option<String>§steps_executed: usize§resume_token: Option<ResumeToken>Trait Implementations§
Source§impl Clone for OutcomeRecord
impl Clone for OutcomeRecord
Source§fn clone(&self) -> OutcomeRecord
fn clone(&self) -> OutcomeRecord
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 OutcomeRecord
impl Debug for OutcomeRecord
Source§impl<'de> Deserialize<'de> for OutcomeRecord
impl<'de> Deserialize<'de> for OutcomeRecord
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutcomeRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutcomeRecord, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OutcomeRecord
impl PartialEq for OutcomeRecord
Source§fn eq(&self, other: &OutcomeRecord) -> bool
fn eq(&self, other: &OutcomeRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OutcomeRecord
impl Serialize for OutcomeRecord
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for OutcomeRecord
Auto Trait Implementations§
impl Freeze for OutcomeRecord
impl RefUnwindSafe for OutcomeRecord
impl Send for OutcomeRecord
impl Sync for OutcomeRecord
impl Unpin for OutcomeRecord
impl UnsafeUnpin for OutcomeRecord
impl UnwindSafe for OutcomeRecord
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