pub struct ProjectLeaderboardEntry {
pub project_name: String,
pub total_sessions: usize,
pub total_tokens: u64,
pub total_cost: f64,
pub avg_session_cost: f64,
}Expand description
Project leaderboard entry with aggregated metrics
Fields§
§project_name: String§total_sessions: usize§total_tokens: u64§total_cost: f64§avg_session_cost: f64Trait Implementations§
Source§impl Clone for ProjectLeaderboardEntry
impl Clone for ProjectLeaderboardEntry
Source§fn clone(&self) -> ProjectLeaderboardEntry
fn clone(&self) -> ProjectLeaderboardEntry
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 moreAuto Trait Implementations§
impl Freeze for ProjectLeaderboardEntry
impl RefUnwindSafe for ProjectLeaderboardEntry
impl Send for ProjectLeaderboardEntry
impl Sync for ProjectLeaderboardEntry
impl Unpin for ProjectLeaderboardEntry
impl UnwindSafe for ProjectLeaderboardEntry
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