[][src]Struct rusoto_mobile::ProjectDetails

pub struct ProjectDetails {
    pub console_url: Option<String>,
    pub created_date: Option<f64>,
    pub last_updated_date: Option<f64>,
    pub name: Option<String>,
    pub project_id: Option<String>,
    pub region: Option<String>,
    pub resources: Option<Vec<Resource>>,
    pub state: Option<String>,
}

Detailed information about an AWS Mobile Hub project.

Fields

console_url: Option<String>

Website URL for this project in the AWS Mobile Hub console.

created_date: Option<f64>

Date the project was created.

last_updated_date: Option<f64>

Date of the last modification of the project.

name: Option<String>project_id: Option<String>region: Option<String>resources: Option<Vec<Resource>>state: Option<String>

Trait Implementations

impl Clone for ProjectDetails[src]

impl Debug for ProjectDetails[src]

impl Default for ProjectDetails[src]

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

impl PartialEq<ProjectDetails> for ProjectDetails[src]

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