[][src]Struct rusoto_mgh::ApplicationState

pub struct ApplicationState {
    pub application_id: Option<String>,
    pub application_status: Option<String>,
    pub last_updated_time: Option<f64>,
}

The state of an application discovered through Migration Hub import, the AWS Agentless Discovery Connector, or the AWS Application Discovery Agent.

Fields

application_id: Option<String>

The configurationId from the Application Discovery Service that uniquely identifies an application.

application_status: Option<String>

The current status of an application.

last_updated_time: Option<f64>

The timestamp when the application status was last updated.

Trait Implementations

impl Clone for ApplicationState[src]

impl Debug for ApplicationState[src]

impl Default for ApplicationState[src]

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

impl PartialEq<ApplicationState> for ApplicationState[src]

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