pub struct UsageInfo {
pub prompt_tokens: u32,
pub completion_tokens: u32,
pub total_tokens: u32,
pub reasoning_tokens: Option<u32>,
pub prompt_tokens_details: Option<PromptTokenUsageInfo>,
}Expand description
Usage information (used by rerank and other endpoints)
Fields§
§prompt_tokens: u32§completion_tokens: u32§total_tokens: u32§reasoning_tokens: Option<u32>§prompt_tokens_details: Option<PromptTokenUsageInfo>Implementations§
Source§impl UsageInfo
impl UsageInfo
Sourcepub fn to_response_usage(&self) -> ResponseUsage
pub fn to_response_usage(&self) -> ResponseUsage
Convert to OpenAI Responses API format
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UsageInfo
impl<'de> Deserialize<'de> for UsageInfo
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<UsageInfo> for ResponseUsage
impl From<UsageInfo> for ResponseUsage
Source§impl JsonSchema for UsageInfo
impl JsonSchema for UsageInfo
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
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 is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for UsageInfo
impl RefUnwindSafe for UsageInfo
impl Send for UsageInfo
impl Sync for UsageInfo
impl Unpin for UsageInfo
impl UnsafeUnpin for UsageInfo
impl UnwindSafe for UsageInfo
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