pub struct RunTimeline {
pub run_id: String,
pub events: Vec<TimelineEntry>,
pub final_status: RunStatusSummary,
}Expand description
Full timeline for a run: ordered events and final status.
Fields§
§run_id: String§events: Vec<TimelineEntry>§final_status: RunStatusSummaryTrait Implementations§
Source§impl Clone for RunTimeline
impl Clone for RunTimeline
Source§fn clone(&self) -> RunTimeline
fn clone(&self) -> RunTimeline
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 RunTimeline
impl Debug for RunTimeline
Source§impl<'de> Deserialize<'de> for RunTimeline
impl<'de> Deserialize<'de> for RunTimeline
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 RunTimeline
impl RefUnwindSafe for RunTimeline
impl Send for RunTimeline
impl Sync for RunTimeline
impl Unpin for RunTimeline
impl UnsafeUnpin for RunTimeline
impl UnwindSafe for RunTimeline
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