Struct rusoto_storagegateway::ListVolumesInput[][src]

pub struct ListVolumesInput {
    pub gateway_arn: Option<String>,
    pub limit: Option<i64>,
    pub marker: Option<String>,
}

A JSON object that contains one or more of the following fields:

Fields

Specifies that the list of volumes returned be limited to the specified number of items.

A string that indicates the position at which to begin the returned list of volumes. Obtain the marker from the response of a previous List iSCSI Volumes request.

Trait Implementations

impl Default for ListVolumesInput
[src]

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

impl Debug for ListVolumesInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListVolumesInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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