Skip to main content

UsageWindowView

Struct UsageWindowView 

Source
pub struct UsageWindowView {
Show 19 fields pub account: Option<String>, pub cached_input_tokens: Option<i32>, pub confidence: Option<String>, pub cost_cents: Option<i32>, pub cost_limit_cents: Option<i32>, pub currency: Option<String>, pub input_tokens: Option<i32>, pub lane: Option<String>, pub machine: Option<String>, pub output_tokens: Option<i32>, pub plan: Option<String>, pub requests: Option<i32>, pub resets_at: Option<String>, pub synthetic: Option<bool>, pub total_tokens: Option<i32>, pub used_pct: Option<f64>, pub window: Option<String>, pub window_minutes: Option<i32>, pub window_start: Option<String>,
}

Fields§

§account: Option<String>

Account is the linked provider account the window belongs to.

§cached_input_tokens: Option<i32>

CachedInputTokens is the prompt tokens served from the provider’s cache; omitted when unknown.

§confidence: Option<String>

Confidence says how much the counters beside it mean — a meter that reported only a percentage leaves them at zero, and this is how a reader tells that from a true zero.

§cost_cents: Option<i32>

CostCents is what the window cost on the PROVIDER’s own plan, in US cents. It is not a Hanzo charge.

§cost_limit_cents: Option<i32>

CostLimitCents is the plan’s spend ceiling for the window, in US cents.

§currency: Option<String>

Currency is the provider’s currency when it is not US cents.

§input_tokens: Option<i32>

InputTokens is prompt tokens consumed in the window; omitted when unknown.

§lane: Option<String>

Lane is the meter lane this instance belongs to, e.g. a provider’s own rolling-window meter.

§machine: Option<String>

Machine is the host whose meter reported the window.

§output_tokens: Option<i32>

OutputTokens is completion tokens produced in the window; omitted when unknown.

§plan: Option<String>

Plan is the subscription plan the account is on, as the provider names it.

§requests: Option<i32>

Requests is how many requests were made in the window; omitted when the meter did not report it.

§resets_at: Option<String>

ResetsAt is when this window rolls over, RFC3339 UTC; omitted when unknown.

§synthetic: Option<bool>

Synthetic marks an instance the meter inferred rather than read.

§total_tokens: Option<i32>

TotalTokens is the window’s total tokens; omitted when unknown.

§used_pct: Option<f64>

UsedPct is how much of the window’s allowance is consumed, 0–100.

§window: Option<String>

Window is the window class: 6h, day, week or month.

§window_minutes: Option<i32>

WindowMinutes is the window’s real length in minutes when the meter reported one; omitted when it did not.

§window_start: Option<String>

WindowStart is when this window opened, RFC3339 UTC; omitted when unknown.

Implementations§

Trait Implementations§

Source§

impl Clone for UsageWindowView

Source§

fn clone(&self) -> UsageWindowView

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for UsageWindowView

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for UsageWindowView

Source§

fn default() -> UsageWindowView

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for UsageWindowView

Source§

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 UsageWindowView

Source§

fn eq(&self, other: &UsageWindowView) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for UsageWindowView

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for UsageWindowView

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self> ⓘ

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self> ⓘ

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> ⓘ
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self> ⓘ

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more