pub struct PropertyQuota {
pub tokens_per_day: Option<QuotaStatus>,
pub tokens_per_hour: Option<QuotaStatus>,
pub concurrent_requests: Option<QuotaStatus>,
pub server_errors_per_project_per_hour: Option<QuotaStatus>,
pub potentially_thresholded_requests_per_hour: Option<QuotaStatus>,
}
Expand description
https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/PropertyQuota
Fields§
§tokens_per_day: Option<QuotaStatus>
§tokens_per_hour: Option<QuotaStatus>
§concurrent_requests: Option<QuotaStatus>
§server_errors_per_project_per_hour: Option<QuotaStatus>
§potentially_thresholded_requests_per_hour: Option<QuotaStatus>
Trait Implementations§
Source§impl Clone for PropertyQuota
impl Clone for PropertyQuota
Source§fn clone(&self) -> PropertyQuota
fn clone(&self) -> PropertyQuota
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PropertyQuota
impl Debug for PropertyQuota
Source§impl Default for PropertyQuota
impl Default for PropertyQuota
Source§fn default() -> PropertyQuota
fn default() -> PropertyQuota
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PropertyQuota
impl<'de> Deserialize<'de> for PropertyQuota
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 PropertyQuota
impl RefUnwindSafe for PropertyQuota
impl Send for PropertyQuota
impl Sync for PropertyQuota
impl Unpin for PropertyQuota
impl UnwindSafe for PropertyQuota
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