[][src]Struct rusoto_comprehend::BatchDetectEntitiesItemResult

pub struct BatchDetectEntitiesItemResult {
    pub entities: Option<Vec<Entity>>,
    pub index: Option<i64>,
}

The result of calling the operation. The operation returns one object for each document that is successfully processed by the operation.

Fields

entities: Option<Vec<Entity>>

One or more Entity objects, one for each entity detected in the document.

index: Option<i64>

The zero-based index of the document in the input list.

Trait Implementations

impl Clone for BatchDetectEntitiesItemResult[src]

impl Debug for BatchDetectEntitiesItemResult[src]

impl Default for BatchDetectEntitiesItemResult[src]

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

impl PartialEq<BatchDetectEntitiesItemResult> for BatchDetectEntitiesItemResult[src]

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