pub struct RetroAggregates {
pub unique_session_ids: HashSet<String>,
pub tool_event_counts: HashMap<String, u64>,
pub tool_cost_usd_e6: HashMap<String, i64>,
pub model_session_counts: HashMap<String, u64>,
pub total_cost_usd_e6: i64,
pub span_tree_stats: Option<SpanTreeStats>,
}Fields§
§unique_session_ids: HashSet<String>§tool_event_counts: HashMap<String, u64>§tool_cost_usd_e6: HashMap<String, i64>§model_session_counts: HashMap<String, u64>§total_cost_usd_e6: i64§span_tree_stats: Option<SpanTreeStats>Trait Implementations§
Source§impl Clone for RetroAggregates
impl Clone for RetroAggregates
Source§fn clone(&self) -> RetroAggregates
fn clone(&self) -> RetroAggregates
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 RetroAggregates
impl Debug for RetroAggregates
Source§impl Default for RetroAggregates
impl Default for RetroAggregates
Source§fn default() -> RetroAggregates
fn default() -> RetroAggregates
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RetroAggregates
impl RefUnwindSafe for RetroAggregates
impl Send for RetroAggregates
impl Sync for RetroAggregates
impl Unpin for RetroAggregates
impl UnsafeUnpin for RetroAggregates
impl UnwindSafe for RetroAggregates
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