Struct rusoto_storagegateway::DescribeTapesOutput[][src]

pub struct DescribeTapesOutput {
    pub marker: Option<String>,
    pub tapes: Option<Vec<Tape>>,
}

DescribeTapesOutput

Fields

An opaque string which can be used as part of a subsequent DescribeTapes call to retrieve the next page of results.

If a response does not contain a marker, then there are no more results to be retrieved.

An array of virtual tape descriptions.

Trait Implementations

impl Default for DescribeTapesOutput
[src]

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

impl Debug for DescribeTapesOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeTapesOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeTapesOutput
[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