[][src]Struct rusoto_polly::PutLexiconInput

pub struct PutLexiconInput {
    pub content: String,
    pub name: String,
}

Fields

content: String

Content of the PLS lexicon as string data.

name: String

Name of the lexicon. The name must follow the regular express format [0-9A-Za-z]{1,20}. That is, the name is a case-sensitive alphanumeric string up to 20 characters long.

Trait Implementations

impl Clone for PutLexiconInput[src]

impl Debug for PutLexiconInput[src]

impl Default for PutLexiconInput[src]

impl PartialEq<PutLexiconInput> for PutLexiconInput[src]

impl Serialize for PutLexiconInput[src]

impl StructuralPartialEq for PutLexiconInput[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> From<T> 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.