[][src]Struct rusoto_emr::ListStepsOutput

pub struct ListStepsOutput {
    pub marker: Option<String>,
    pub steps: Option<Vec<StepSummary>>,
}

This output contains the list of steps returned in reverse order. This means that the last step is the first element in the list.

Fields

marker: Option<String>

The pagination token that indicates the next set of results to retrieve.

steps: Option<Vec<StepSummary>>

The filtered list of steps for the cluster.

Trait Implementations

impl Clone for ListStepsOutput[src]

impl Debug for ListStepsOutput[src]

impl Default for ListStepsOutput[src]

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

impl PartialEq<ListStepsOutput> for ListStepsOutput[src]

impl StructuralPartialEq for ListStepsOutput[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: Deserialize<'de>, 
[src]

impl<T> From<T> 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.