pub struct PromptTokensDetails {
pub cached_tokens: Option<u32>,
}Expand description
Details for how prompt tokens were accounted. Fields here are provider-specific and may expand in the future.
Fields§
§cached_tokens: Option<u32>Number of tokens hit by cache
Implementations§
Source§impl PromptTokensDetails
impl PromptTokensDetails
pub fn cached_tokens(&self) -> Option<u32>
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 · 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<'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
Source§impl Serialize for PromptTokensDetails
impl Serialize for PromptTokensDetails
Source§impl Validate for PromptTokensDetails
impl Validate for PromptTokensDetails
Source§impl<'v_a> ValidateArgs<'v_a> for PromptTokensDetails
impl<'v_a> ValidateArgs<'v_a> for PromptTokensDetails
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