pub struct AccountGetQuotaResult {
pub quota_snapshots: HashMap<String, AccountQuotaSnapshot>,
}Expand description
Quota usage snapshots for the resolved user, keyed by quota type.
Fields§
§quota_snapshots: HashMap<String, AccountQuotaSnapshot>Quota snapshots keyed by type (e.g., chat, completions, premium_interactions)
Trait Implementations§
Source§impl Clone for AccountGetQuotaResult
impl Clone for AccountGetQuotaResult
Source§fn clone(&self) -> AccountGetQuotaResult
fn clone(&self) -> AccountGetQuotaResult
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 AccountGetQuotaResult
impl Debug for AccountGetQuotaResult
Source§impl Default for AccountGetQuotaResult
impl Default for AccountGetQuotaResult
Source§fn default() -> AccountGetQuotaResult
fn default() -> AccountGetQuotaResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountGetQuotaResult
impl<'de> Deserialize<'de> for AccountGetQuotaResult
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 AccountGetQuotaResult
impl RefUnwindSafe for AccountGetQuotaResult
impl Send for AccountGetQuotaResult
impl Sync for AccountGetQuotaResult
impl Unpin for AccountGetQuotaResult
impl UnsafeUnpin for AccountGetQuotaResult
impl UnwindSafe for AccountGetQuotaResult
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