Struct rusoto_glacier::ListVaultsOutput[][src]

pub struct ListVaultsOutput {
    pub marker: Option<String>,
    pub vault_list: Option<Vec<DescribeVaultOutput>>,
}

Contains the Amazon Glacier response to your request.

Fields

The vault ARN at which to continue pagination of the results. You use the marker in another List Vaults request to obtain more vaults in the list.

List of vaults.

Trait Implementations

impl Default for ListVaultsOutput
[src]

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

impl Debug for ListVaultsOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListVaultsOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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