Struct rusoto_efs::DescribeFileSystemsResponse[][src]

pub struct DescribeFileSystemsResponse {
    pub file_systems: Option<Vec<FileSystemDescription>>,
    pub marker: Option<String>,
    pub next_marker: Option<String>,
}

Fields

Array of file system descriptions.

Present if provided by caller in the request (String).

Present if there are more file systems than returned in the response (String). You can use the NextMarker in the subsequent request to fetch the descriptions.

Trait Implementations

impl Default for DescribeFileSystemsResponse
[src]

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

impl Debug for DescribeFileSystemsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeFileSystemsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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