pub struct UsageBucket {
pub ts: Option<String>,
pub messages: i64,
pub input_tokens: i64,
pub output_tokens: i64,
pub cached_tokens: i64,
pub total_tokens: i64,
pub cost_usd: f64,
}Expand description
One time-bucket’s aggregated usage.
Fields§
§ts: Option<String>Bucket start timestamp, RFC3339. None when bucket == None.
messages: i64§input_tokens: i64§output_tokens: i64§cached_tokens: i64§total_tokens: i64§cost_usd: f64Trait Implementations§
Source§impl Clone for UsageBucket
impl Clone for UsageBucket
Source§fn clone(&self) -> UsageBucket
fn clone(&self) -> UsageBucket
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 ComposeSchema for UsageBucket
impl ComposeSchema for UsageBucket
Source§impl Debug for UsageBucket
impl Debug for UsageBucket
Source§impl<'de> Deserialize<'de> for UsageBucket
impl<'de> Deserialize<'de> for UsageBucket
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
Source§impl JsonSchema for UsageBucket
impl JsonSchema for UsageBucket
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl Serialize for UsageBucket
impl Serialize for UsageBucket
Auto Trait Implementations§
impl Freeze for UsageBucket
impl RefUnwindSafe for UsageBucket
impl Send for UsageBucket
impl Sync for UsageBucket
impl Unpin for UsageBucket
impl UnsafeUnpin for UsageBucket
impl UnwindSafe for UsageBucket
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