Struct rusoto_efs::DescribeMountTargetsResponse[][src]

pub struct DescribeMountTargetsResponse {
    pub marker: Option<String>,
    pub mount_targets: Option<Vec<MountTargetDescription>>,
    pub next_marker: Option<String>,
}

Fields

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

Returns the file system's mount targets as an array of MountTargetDescription objects.

If a value is present, there are more mount targets to return. In a subsequent request, you can provide Marker in your request with this value to retrieve the next set of mount targets.

Trait Implementations

impl Default for DescribeMountTargetsResponse
[src]

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

impl Debug for DescribeMountTargetsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeMountTargetsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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