pub struct CliTimelineExport {
pub session_id: String,
pub tool: String,
pub model: String,
pub total_events: usize,
pub rendered_rows: usize,
pub max_active_agents: usize,
pub max_lane_index: usize,
pub generated_summaries: usize,
pub lines: Vec<String>,
}Fields§
§session_id: String§tool: String§model: String§total_events: usize§rendered_rows: usize§max_active_agents: usize§max_lane_index: usize§generated_summaries: usize§lines: Vec<String>Trait Implementations§
Source§impl Clone for CliTimelineExport
impl Clone for CliTimelineExport
Source§fn clone(&self) -> CliTimelineExport
fn clone(&self) -> CliTimelineExport
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 CliTimelineExport
impl Debug for CliTimelineExport
Auto Trait Implementations§
impl Freeze for CliTimelineExport
impl RefUnwindSafe for CliTimelineExport
impl Send for CliTimelineExport
impl Sync for CliTimelineExport
impl Unpin for CliTimelineExport
impl UnwindSafe for CliTimelineExport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more