pub struct ApiUsage {
pub timestamp: Option<String>,
pub current_usage: Option<i64>,
pub plan_limit: Option<i64>,
pub plan_category: Option<String>,
}Fields§
§timestamp: Option<String>Current timestamp in UTC timezone
current_usage: Option<i64>Number of requests made in last minute
plan_limit: Option<i64>Your personal API limit (requests/minute) depending on the plan
plan_category: Option<String>Plan category name
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ApiUsage
impl<'de> Deserialize<'de> for ApiUsage
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
impl StructuralPartialEq for ApiUsage
Auto Trait Implementations§
impl Freeze for ApiUsage
impl RefUnwindSafe for ApiUsage
impl Send for ApiUsage
impl Sync for ApiUsage
impl Unpin for ApiUsage
impl UnwindSafe for ApiUsage
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