pub struct UsageInformation {
pub character_limit: u64,
pub character_count: u64,
}
Expand description
Information about API usage & limits for this account.
Fields§
§character_limit: u64
How many characters can be translated per billing period, based on the account settings.
character_count: u64
How many characters were already translated in the current billing period.
Trait Implementations§
Source§impl Debug for UsageInformation
impl Debug for UsageInformation
Source§impl<'de> Deserialize<'de> for UsageInformation
impl<'de> Deserialize<'de> for UsageInformation
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 UsageInformation
impl RefUnwindSafe for UsageInformation
impl Send for UsageInformation
impl Sync for UsageInformation
impl Unpin for UsageInformation
impl UnwindSafe for UsageInformation
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