pub struct LLMUsageSummaryUsage {
pub requests_this_hour: Option<i64>,
pub requests_this_minute: Option<i64>,
pub requests_today: Option<i64>,
pub tokens_remaining: Option<i64>,
pub tokens_used: Option<i64>,
}Expand description
LLMUsageSummaryUsage model.
Fields§
§requests_this_hour: Option<i64>§requests_this_minute: Option<i64>§requests_today: Option<i64>§tokens_remaining: Option<i64>§tokens_used: Option<i64>Trait Implementations§
Source§impl Clone for LLMUsageSummaryUsage
impl Clone for LLMUsageSummaryUsage
Source§fn clone(&self) -> LLMUsageSummaryUsage
fn clone(&self) -> LLMUsageSummaryUsage
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 LLMUsageSummaryUsage
impl Debug for LLMUsageSummaryUsage
Source§impl Default for LLMUsageSummaryUsage
impl Default for LLMUsageSummaryUsage
Source§fn default() -> LLMUsageSummaryUsage
fn default() -> LLMUsageSummaryUsage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LLMUsageSummaryUsage
impl<'de> Deserialize<'de> for LLMUsageSummaryUsage
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 PartialEq for LLMUsageSummaryUsage
impl PartialEq for LLMUsageSummaryUsage
Source§impl Serialize for LLMUsageSummaryUsage
impl Serialize for LLMUsageSummaryUsage
impl StructuralPartialEq for LLMUsageSummaryUsage
Auto Trait Implementations§
impl Freeze for LLMUsageSummaryUsage
impl RefUnwindSafe for LLMUsageSummaryUsage
impl Send for LLMUsageSummaryUsage
impl Sync for LLMUsageSummaryUsage
impl Unpin for LLMUsageSummaryUsage
impl UnsafeUnpin for LLMUsageSummaryUsage
impl UnwindSafe for LLMUsageSummaryUsage
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