pub struct AnthropicUsage {
pub input_tokens: Option<u32>,
pub output_tokens: Option<u32>,
}Expand description
Anthropic usage accounting.
Fields§
§input_tokens: Option<u32>Provider input tokens.
output_tokens: Option<u32>Provider output tokens.
Trait Implementations§
Source§impl Clone for AnthropicUsage
impl Clone for AnthropicUsage
Source§fn clone(&self) -> AnthropicUsage
fn clone(&self) -> AnthropicUsage
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 AnthropicUsage
impl Debug for AnthropicUsage
Source§impl Default for AnthropicUsage
impl Default for AnthropicUsage
Source§fn default() -> AnthropicUsage
fn default() -> AnthropicUsage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnthropicUsage
impl<'de> Deserialize<'de> for AnthropicUsage
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 From<AnthropicUsage> for ProviderUsage
impl From<AnthropicUsage> for ProviderUsage
Source§fn from(value: AnthropicUsage) -> Self
fn from(value: AnthropicUsage) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AnthropicUsage
impl PartialEq for AnthropicUsage
Source§fn eq(&self, other: &AnthropicUsage) -> bool
fn eq(&self, other: &AnthropicUsage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnthropicUsage
impl Serialize for AnthropicUsage
impl Eq for AnthropicUsage
impl StructuralPartialEq for AnthropicUsage
Auto Trait Implementations§
impl Freeze for AnthropicUsage
impl RefUnwindSafe for AnthropicUsage
impl Send for AnthropicUsage
impl Sync for AnthropicUsage
impl Unpin for AnthropicUsage
impl UnsafeUnpin for AnthropicUsage
impl UnwindSafe for AnthropicUsage
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