pub struct ExecutionHistoryEntry {
pub thread_id: String,
pub task_id: String,
pub run_id: String,
pub execution_result: ExecutionResult,
pub stored_at: i64,
}Expand description
Enriched execution history entry that includes context metadata
Fields§
§thread_id: String§task_id: String§run_id: String§execution_result: ExecutionResult§stored_at: i64Trait Implementations§
Source§impl Clone for ExecutionHistoryEntry
impl Clone for ExecutionHistoryEntry
Source§fn clone(&self) -> ExecutionHistoryEntry
fn clone(&self) -> ExecutionHistoryEntry
Returns a duplicate 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 ExecutionHistoryEntry
impl Debug for ExecutionHistoryEntry
Source§impl<'de> Deserialize<'de> for ExecutionHistoryEntry
impl<'de> Deserialize<'de> for ExecutionHistoryEntry
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 ExecutionHistoryEntry
impl RefUnwindSafe for ExecutionHistoryEntry
impl Send for ExecutionHistoryEntry
impl Sync for ExecutionHistoryEntry
impl Unpin for ExecutionHistoryEntry
impl UnsafeUnpin for ExecutionHistoryEntry
impl UnwindSafe for ExecutionHistoryEntry
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