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

Storage usage (bytes).

Storage quota (bytes).

Storage usage per type (bytes).

Trait Implementations

impl Clone for GetUsageAndQuotaResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GetUsageAndQuotaResponse
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for GetUsageAndQuotaResponse
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl CdpCommand for GetUsageAndQuotaResponse
[src]

COMMAND_NAME: &'static str = "Storage.getUsageAndQuota"

impl<'a> HasCdpCommand<'a> for GetUsageAndQuotaResponse
[src]