[][src]Struct rusoto_emr::InstanceStatus

pub struct InstanceStatus {
    pub state: Option<String>,
    pub state_change_reason: Option<InstanceStateChangeReason>,
    pub timeline: Option<InstanceTimeline>,
}

The instance status details.

Fields

state: Option<String>

The current state of the instance.

state_change_reason: Option<InstanceStateChangeReason>

The details of the status change reason for the instance.

timeline: Option<InstanceTimeline>

The timeline of the instance status over time.

Trait Implementations

impl Clone for InstanceStatus[src]

impl Debug for InstanceStatus[src]

impl Default for InstanceStatus[src]

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

impl PartialEq<InstanceStatus> for InstanceStatus[src]

impl StructuralPartialEq for InstanceStatus[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.