[][src]Struct rusoto_efs::DescribeMountTargetsResponse

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

Fields

marker: Option<String>

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

mount_targets: Option<Vec<MountTargetDescription>>

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

next_marker: Option<String>

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 Clone for DescribeMountTargetsResponse[src]

impl Debug for DescribeMountTargetsResponse[src]

impl Default for DescribeMountTargetsResponse[src]

impl<'de> Deserialize<'de> for DescribeMountTargetsResponse[src]

impl PartialEq<DescribeMountTargetsResponse> for DescribeMountTargetsResponse[src]

impl StructuralPartialEq for DescribeMountTargetsResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.