[][src]Struct rusoto_comprehend::BatchDetectDominantLanguageResponse

pub struct BatchDetectDominantLanguageResponse {
    pub error_list: Vec<BatchItemError>,
    pub result_list: Vec<BatchDetectDominantLanguageItemResult>,
}

Fields

error_list: Vec<BatchItemError>

A list containing one object for each document that contained an error. The results are sorted in ascending order by the Index field and match the order of the documents in the input list. If there are no errors in the batch, the ErrorList is empty.

result_list: Vec<BatchDetectDominantLanguageItemResult>

A list of objects containing the results of the operation. The results are sorted in ascending order by the Index field and match the order of the documents in the input list. If all of the documents contain an error, the ResultList is empty.

Trait Implementations

impl Clone for BatchDetectDominantLanguageResponse[src]

impl Debug for BatchDetectDominantLanguageResponse[src]

impl Default for BatchDetectDominantLanguageResponse[src]

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

impl PartialEq<BatchDetectDominantLanguageResponse> for BatchDetectDominantLanguageResponse[src]

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