Struct rusoto_storagegateway::ListFileSharesOutput[][src]

pub struct ListFileSharesOutput {
    pub file_share_info_list: Option<Vec<FileShareInfo>>,
    pub marker: Option<String>,
    pub next_marker: Option<String>,
}

ListFileShareOutput

Fields

An array of information about the file gateway's file shares.

If the request includes Marker, the response returns that value in this field.

If a value is present, there are more file shares to return. In a subsequent request, use NextMarker as the value for Marker to retrieve the next set of file shares.

Trait Implementations

impl Default for ListFileSharesOutput
[src]

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

impl Debug for ListFileSharesOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListFileSharesOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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