[][src]Struct rusoto_transcribe::ListMedicalVocabulariesResponse

pub struct ListMedicalVocabulariesResponse {
    pub next_token: Option<String>,
    pub status: Option<String>,
    pub vocabularies: Option<Vec<VocabularyInfo>>,
}

Fields

next_token: Option<String>

The ListMedicalVocabularies operation returns a page of vocabularies at a time. You set the maximum number of vocabularies to return on a page with the MaxResults parameter. If there are more jobs in the list will fit on a page, Amazon Transcribe Medical returns the NextPage token. To return the next page of vocabularies, include the token in the next request to the ListMedicalVocabularies operation .

status: Option<String>

The requested vocabulary state.

vocabularies: Option<Vec<VocabularyInfo>>

A list of objects that describe the vocabularies that match your search criteria.

Trait Implementations

impl Clone for ListMedicalVocabulariesResponse[src]

impl Debug for ListMedicalVocabulariesResponse[src]

impl Default for ListMedicalVocabulariesResponse[src]

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

impl PartialEq<ListMedicalVocabulariesResponse> for ListMedicalVocabulariesResponse[src]

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