[][src]Struct rusoto_storagegateway::DescribeUploadBufferOutput

pub struct DescribeUploadBufferOutput {
    pub disk_ids: Option<Vec<String>>,
    pub gateway_arn: Option<String>,
    pub upload_buffer_allocated_in_bytes: Option<i64>,
    pub upload_buffer_used_in_bytes: Option<i64>,
}

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>upload_buffer_allocated_in_bytes: Option<i64>

The total number of bytes allocated in the gateway's as upload buffer.

upload_buffer_used_in_bytes: Option<i64>

The total number of bytes being used in the gateway's upload buffer.

Trait Implementations

impl Clone for DescribeUploadBufferOutput[src]

impl Debug for DescribeUploadBufferOutput[src]

impl Default for DescribeUploadBufferOutput[src]

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

impl PartialEq<DescribeUploadBufferOutput> for DescribeUploadBufferOutput[src]

impl StructuralPartialEq for DescribeUploadBufferOutput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.