pub struct PromptTokensDetails {
pub cache_creation_tokens: Option<i32>,
pub cache_creation_details: Option<CacheCreationDetails>,
pub cached_tokens: Option<i32>,
pub audio_tokens: Option<i32>,
}Fields§
§cache_creation_tokens: Option<i32>Anthropic: cache_creation_input_tokens.
Tokens used to build the cache (not yet cached). These may incur a small surcharge; subsequent requests benefit via cached_tokens.
cache_creation_details: Option<CacheCreationDetails>Breakdown of cache creation tokens by TTL (5m vs 1h). Only populated when the provider returns TTL-specific breakdown.
cached_tokens: Option<i32>Anthropic: cache_read_input_tokens.
audio_tokens: Option<i32>Implementations§
Trait Implementations§
Source§impl Clone for PromptTokensDetails
impl Clone for PromptTokensDetails
Source§fn clone(&self) -> PromptTokensDetails
fn clone(&self) -> PromptTokensDetails
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 PromptTokensDetails
impl Debug for PromptTokensDetails
Source§impl Default for PromptTokensDetails
impl Default for PromptTokensDetails
Source§fn default() -> PromptTokensDetails
fn default() -> PromptTokensDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PromptTokensDetails
impl<'de> Deserialize<'de> for PromptTokensDetails
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 PromptTokensDetails
impl RefUnwindSafe for PromptTokensDetails
impl Send for PromptTokensDetails
impl Sync for PromptTokensDetails
impl Unpin for PromptTokensDetails
impl UnsafeUnpin for PromptTokensDetails
impl UnwindSafe for PromptTokensDetails
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