[][src]Struct rusoto_transcribe::CreateVocabularyResponse

pub struct CreateVocabularyResponse {
    pub failure_reason: Option<String>,
    pub language_code: Option<String>,
    pub last_modified_time: Option<f64>,
    pub vocabulary_name: Option<String>,
    pub vocabulary_state: Option<String>,
}

Fields

failure_reason: Option<String>

If the VocabularyState field is FAILED, this field contains information about why the job failed.

language_code: Option<String>

The language code of the vocabulary entries.

last_modified_time: Option<f64>

The date and time that the vocabulary was created.

vocabulary_name: Option<String>

The name of the vocabulary.

vocabulary_state: Option<String>

The processing state of the vocabulary. When the VocabularyState field contains READY the vocabulary is ready to be used in a StartTranscriptionJob request.

Trait Implementations

impl Clone for CreateVocabularyResponse[src]

impl Debug for CreateVocabularyResponse[src]

impl Default for CreateVocabularyResponse[src]

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

impl PartialEq<CreateVocabularyResponse> for CreateVocabularyResponse[src]

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