[][src]Struct rusoto_storagegateway::DescribeWorkingStorageOutput

pub struct DescribeWorkingStorageOutput {
    pub disk_ids: Option<Vec<String>>,
    pub gateway_arn: Option<String>,
    pub working_storage_allocated_in_bytes: Option<i64>,
    pub working_storage_used_in_bytes: Option<i64>,
}

A JSON object containing the following fields:

Fields

disk_ids: Option<Vec<String>>

An array of the gateway's local disk IDs that are configured as working storage. Each local disk ID is specified as a string (minimum length of 1 and maximum length of 300). If no local disks are configured as working storage, then the DiskIds array is empty.

gateway_arn: Option<String>working_storage_allocated_in_bytes: Option<i64>

The total working storage in bytes allocated for the gateway. If no working storage is configured for the gateway, this field returns 0.

working_storage_used_in_bytes: Option<i64>

The total working storage in bytes in use by the gateway. If no working storage is configured for the gateway, this field returns 0.

Trait Implementations

impl PartialEq<DescribeWorkingStorageOutput> for DescribeWorkingStorageOutput[src]

impl Default for DescribeWorkingStorageOutput[src]

impl Clone for DescribeWorkingStorageOutput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DescribeWorkingStorageOutput[src]

impl<'de> Deserialize<'de> for DescribeWorkingStorageOutput[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self