Struct cdp::storage::GetUsageAndQuotaResponse
[−]
[src]
pub struct GetUsageAndQuotaResponse { pub usage: f64, pub quota: f64, pub usage_breakdown: Vec<UsageForType>, }
[Experimental] Returns usage and quota in bytes.
Command Storage.getUsageAndQuota
Domain Module: cdp::storage
Command Struct: cdp::storage::GetUsageAndQuotaCommand
Response Struct: cdp::storage::GetUsageAndQuotaResponse
Fields
usage: f64
Storage usage (bytes).
quota: f64
Storage quota (bytes).
usage_breakdown: Vec<UsageForType>
Storage usage per type (bytes).
Trait Implementations
impl Clone for GetUsageAndQuotaResponse
[src]
fn clone(&self) -> GetUsageAndQuotaResponse
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for GetUsageAndQuotaResponse
[src]
impl PartialEq for GetUsageAndQuotaResponse
[src]
fn eq(&self, __arg_0: &GetUsageAndQuotaResponse) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &GetUsageAndQuotaResponse) -> bool
[src]
This method tests for !=
.
impl CdpCommand for GetUsageAndQuotaResponse
[src]
const COMMAND_NAME: &'static str
COMMAND_NAME: &'static str = "Storage.getUsageAndQuota"