pub struct ProjectCost {
pub project_id: i64,
pub total_executions: i64,
pub total_cost_usd: f64,
pub avg_cost_usd: f64,
pub total_input_tokens: i64,
pub total_output_tokens: i64,
}Fields§
§project_id: i64§total_executions: i64§total_cost_usd: f64§avg_cost_usd: f64§total_input_tokens: i64§total_output_tokens: i64Trait Implementations§
Source§impl Clone for ProjectCost
impl Clone for ProjectCost
Source§fn clone(&self) -> ProjectCost
fn clone(&self) -> ProjectCost
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProjectCost
impl Debug for ProjectCost
Source§impl<'de> Deserialize<'de> for ProjectCost
impl<'de> Deserialize<'de> for ProjectCost
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 ProjectCost
impl RefUnwindSafe for ProjectCost
impl Send for ProjectCost
impl Sync for ProjectCost
impl Unpin for ProjectCost
impl UnsafeUnpin for ProjectCost
impl UnwindSafe for ProjectCost
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