#[non_exhaustive]pub struct MessagesUsageRow {Show 13 fields
pub cache_creation: CacheCreationTokens,
pub cache_read_input_tokens: u64,
pub uncached_input_tokens: u64,
pub output_tokens: u64,
pub server_tool_use: ServerToolUse,
pub account_id: Option<String>,
pub service_account_id: Option<String>,
pub api_key_id: Option<String>,
pub workspace_id: Option<String>,
pub model: Option<String>,
pub service_tier: Option<ServiceTier>,
pub context_window: Option<ContextWindow>,
pub inference_geo: Option<String>,
}Available on crate feature
admin only.Expand description
One usage row inside a messages usage report bucket.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.cache_creation: CacheCreationTokensCumulative cache-creation tokens.
cache_read_input_tokens: u64Cache-read input tokens.
uncached_input_tokens: u64Uncached input tokens.
output_tokens: u64Output tokens.
server_tool_use: ServerToolUseServer-tool counts.
account_id: Option<String>Account dimension (set when grouping by account_id).
service_account_id: Option<String>Service-account dimension.
api_key_id: Option<String>API-key dimension.
workspace_id: Option<String>Workspace dimension.
model: Option<String>Model dimension.
service_tier: Option<ServiceTier>Service-tier dimension.
context_window: Option<ContextWindow>Context-window dimension.
inference_geo: Option<String>Inference-geo dimension. May be the literal "not_available"
for models that don’t expose inference_geo.
Trait Implementations§
Source§impl Clone for MessagesUsageRow
impl Clone for MessagesUsageRow
Source§fn clone(&self) -> MessagesUsageRow
fn clone(&self) -> MessagesUsageRow
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 MessagesUsageRow
impl Debug for MessagesUsageRow
Source§impl<'de> Deserialize<'de> for MessagesUsageRow
impl<'de> Deserialize<'de> for MessagesUsageRow
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 MessagesUsageRow
impl RefUnwindSafe for MessagesUsageRow
impl Send for MessagesUsageRow
impl Sync for MessagesUsageRow
impl Unpin for MessagesUsageRow
impl UnsafeUnpin for MessagesUsageRow
impl UnwindSafe for MessagesUsageRow
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 moreCreates a shared type from an unshared type.