Struct rusoto_storagegateway::ListTapesOutput[][src]

pub struct ListTapesOutput {
    pub marker: Option<String>,
    pub tape_infos: Option<Vec<TapeInfo>>,
}

A JSON object containing the following fields:

Fields

A string that indicates the position at which to begin returning the next list of tapes. Use the marker in your next request to continue pagination of tapes. If there are no more tapes to list, this element does not appear in the response body.

Trait Implementations

impl Default for ListTapesOutput
[src]

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

impl Debug for ListTapesOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListTapesOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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