[][src]Struct rusoto_textract::GetDocumentTextDetectionResponse

pub struct GetDocumentTextDetectionResponse {
    pub blocks: Option<Vec<Block>>,
    pub detect_document_text_model_version: Option<String>,
    pub document_metadata: Option<DocumentMetadata>,
    pub job_status: Option<String>,
    pub next_token: Option<String>,
    pub status_message: Option<String>,
    pub warnings: Option<Vec<Warning>>,
}

Fields

blocks: Option<Vec<Block>>

The results of the text-detection operation.

detect_document_text_model_version: Option<String>

document_metadata: Option<DocumentMetadata>

Information about a document that Amazon Textract processed. DocumentMetadata is returned in every page of paginated responses from an Amazon Textract video operation.

job_status: Option<String>

The current status of the text detection job.

next_token: Option<String>

If the response is truncated, Amazon Textract returns this token. You can use this token in the subsequent request to retrieve the next set of text-detection results.

status_message: Option<String>

The current status of an asynchronous text-detection operation for the document.

warnings: Option<Vec<Warning>>

A list of warnings that occurred during the text-detection operation for the document.

Trait Implementations

impl Clone for GetDocumentTextDetectionResponse[src]

impl Debug for GetDocumentTextDetectionResponse[src]

impl Default for GetDocumentTextDetectionResponse[src]

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

impl PartialEq<GetDocumentTextDetectionResponse> for GetDocumentTextDetectionResponse[src]

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