[][src]Struct rusoto_lex_models::BotMetadata

pub struct BotMetadata {
    pub created_date: Option<f64>,
    pub description: Option<String>,
    pub last_updated_date: Option<f64>,
    pub name: Option<String>,
    pub status: Option<String>,
    pub version: Option<String>,
}

Provides information about a bot. .

Fields

created_date: Option<f64>

The date that the bot was created.

description: Option<String>

A description of the bot.

last_updated_date: Option<f64>

The date that the bot was updated. When you create a bot, the creation date and last updated date are the same.

name: Option<String>

The name of the bot.

status: Option<String>

The status of the bot.

version: Option<String>

The version of the bot. For a new bot, the version is always $LATEST.

Trait Implementations

impl PartialEq<BotMetadata> for BotMetadata[src]

impl Default for BotMetadata[src]

impl Clone for BotMetadata[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for BotMetadata[src]

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

Auto Trait Implementations

impl Send for BotMetadata

impl Sync for BotMetadata

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self