Struct rusoto_storagegateway::DescribeBandwidthRateLimitOutput[][src]

pub struct DescribeBandwidthRateLimitOutput {
    pub average_download_rate_limit_in_bits_per_sec: Option<i64>,
    pub average_upload_rate_limit_in_bits_per_sec: Option<i64>,
    pub gateway_arn: Option<String>,
}

A JSON object containing the following fields:

Fields

The average download bandwidth rate limit in bits per second. This field does not appear in the response if the download rate limit is not set.

The average upload bandwidth rate limit in bits per second. This field does not appear in the response if the upload rate limit is not set.

Trait Implementations

impl Default for DescribeBandwidthRateLimitOutput
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeBandwidthRateLimitOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeBandwidthRateLimitOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeBandwidthRateLimitOutput
[src]

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

This method tests for !=.

Auto Trait Implementations