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§
Source§impl Clone for GetDocumentTextDetectionResponse
impl Clone for GetDocumentTextDetectionResponse
Source§fn clone(&self) -> GetDocumentTextDetectionResponse
fn clone(&self) -> GetDocumentTextDetectionResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for GetDocumentTextDetectionResponse
impl Default for GetDocumentTextDetectionResponse
Source§fn default() -> GetDocumentTextDetectionResponse
fn default() -> GetDocumentTextDetectionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetDocumentTextDetectionResponse
impl<'de> Deserialize<'de> for GetDocumentTextDetectionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetDocumentTextDetectionResponse
impl PartialEq for GetDocumentTextDetectionResponse
Source§fn eq(&self, other: &GetDocumentTextDetectionResponse) -> bool
fn eq(&self, other: &GetDocumentTextDetectionResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetDocumentTextDetectionResponse
Auto Trait Implementations§
impl Freeze for GetDocumentTextDetectionResponse
impl RefUnwindSafe for GetDocumentTextDetectionResponse
impl Send for GetDocumentTextDetectionResponse
impl Sync for GetDocumentTextDetectionResponse
impl Unpin for GetDocumentTextDetectionResponse
impl UnwindSafe for GetDocumentTextDetectionResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more