pub struct GetUsage200Response {
pub character_count: Option<i64>,
pub character_limit: Option<i64>,
pub document_limit: Option<i64>,
pub document_count: Option<i64>,
pub team_document_limit: Option<i64>,
pub team_document_count: Option<i64>,
}Fields§
§character_count: Option<i64>Characters translated so far in the current billing period.
character_limit: Option<i64>Current maximum number of characters that can be translated per billing period.
document_limit: Option<i64>Documents translated so far in the current billing period.
document_count: Option<i64>Current maximum number of documents that can be translated per billing period.
team_document_limit: Option<i64>Documents translated by all users in the team so far in the current billing period.
team_document_count: Option<i64>Current maximum number of documents that can be translated by the team per billing period.
Implementations§
Source§impl GetUsage200Response
impl GetUsage200Response
pub fn new() -> GetUsage200Response
Trait Implementations§
Source§impl Clone for GetUsage200Response
impl Clone for GetUsage200Response
Source§fn clone(&self) -> GetUsage200Response
fn clone(&self) -> GetUsage200Response
Returns a duplicate of the value. Read more
1.0.0 · 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 GetUsage200Response
impl Debug for GetUsage200Response
Source§impl Default for GetUsage200Response
impl Default for GetUsage200Response
Source§fn default() -> GetUsage200Response
fn default() -> GetUsage200Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetUsage200Response
impl<'de> Deserialize<'de> for GetUsage200Response
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 GetUsage200Response
impl PartialEq for GetUsage200Response
Source§impl Serialize for GetUsage200Response
impl Serialize for GetUsage200Response
impl StructuralPartialEq for GetUsage200Response
Auto Trait Implementations§
impl Freeze for GetUsage200Response
impl RefUnwindSafe for GetUsage200Response
impl Send for GetUsage200Response
impl Sync for GetUsage200Response
impl Unpin for GetUsage200Response
impl UnwindSafe for GetUsage200Response
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