pub struct HtmlSessionSummary {Show 13 fields
pub id: String,
pub project: Option<String>,
pub turns: usize,
pub agent_turns: usize,
pub cost: f64,
pub duration_minutes: Option<f64>,
pub model: Option<String>,
pub cache_hit_rate: Option<f64>,
pub first_timestamp: Option<String>,
pub last_timestamp: Option<String>,
pub title: Option<String>,
pub tags: Vec<String>,
pub mode: Option<String>,
}Expand description
Per-session summary for the HTML dashboard.
Fields§
§id: String§project: Option<String>§turns: usize§agent_turns: usize§cost: f64§duration_minutes: Option<f64>§model: Option<String>§cache_hit_rate: Option<f64>§first_timestamp: Option<String>§last_timestamp: Option<String>§title: Option<String>§mode: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for HtmlSessionSummary
impl RefUnwindSafe for HtmlSessionSummary
impl Send for HtmlSessionSummary
impl Sync for HtmlSessionSummary
impl Unpin for HtmlSessionSummary
impl UnsafeUnpin for HtmlSessionSummary
impl UnwindSafe for HtmlSessionSummary
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> 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