pub struct ResourceQuotasRemaining {
pub daily_quota_tokens_remaining: Option<i32>,
pub hourly_quota_tokens_remaining: Option<i32>,
}Expand description
The resource quota tokens remaining for the property after the request is completed.
This type is not used in any activity, and only used as part of another schema.
Fields§
§daily_quota_tokens_remaining: Option<i32>Daily resource quota remaining remaining.
hourly_quota_tokens_remaining: Option<i32>Hourly resource quota tokens remaining.
Trait Implementations§
Source§impl Clone for ResourceQuotasRemaining
impl Clone for ResourceQuotasRemaining
Source§fn clone(&self) -> ResourceQuotasRemaining
fn clone(&self) -> ResourceQuotasRemaining
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 ResourceQuotasRemaining
impl Debug for ResourceQuotasRemaining
Source§impl Default for ResourceQuotasRemaining
impl Default for ResourceQuotasRemaining
Source§fn default() -> ResourceQuotasRemaining
fn default() -> ResourceQuotasRemaining
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResourceQuotasRemaining
impl<'de> Deserialize<'de> for ResourceQuotasRemaining
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 Serialize for ResourceQuotasRemaining
impl Serialize for ResourceQuotasRemaining
impl Part for ResourceQuotasRemaining
Auto Trait Implementations§
impl Freeze for ResourceQuotasRemaining
impl RefUnwindSafe for ResourceQuotasRemaining
impl Send for ResourceQuotasRemaining
impl Sync for ResourceQuotasRemaining
impl Unpin for ResourceQuotasRemaining
impl UnwindSafe for ResourceQuotasRemaining
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