pub struct GetDocumentAnalysisResponse {
pub analyze_document_model_version: Option<String>,
pub blocks: Option<Vec<Block>>,
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§
§analyze_document_model_version: Option<String>
§
blocks: Option<Vec<Block>>
The results of the text-analysis operation.
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>
Returns if the detection job could not be completed. Contains explanation for what error occured.
warnings: Option<Vec<Warning>>
A list of warnings that occurred during the document-analysis operation.
Trait Implementations§
Source§impl Clone for GetDocumentAnalysisResponse
impl Clone for GetDocumentAnalysisResponse
Source§fn clone(&self) -> GetDocumentAnalysisResponse
fn clone(&self) -> GetDocumentAnalysisResponse
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 Debug for GetDocumentAnalysisResponse
impl Debug for GetDocumentAnalysisResponse
Source§impl Default for GetDocumentAnalysisResponse
impl Default for GetDocumentAnalysisResponse
Source§fn default() -> GetDocumentAnalysisResponse
fn default() -> GetDocumentAnalysisResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetDocumentAnalysisResponse
impl<'de> Deserialize<'de> for GetDocumentAnalysisResponse
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
impl StructuralPartialEq for GetDocumentAnalysisResponse
Auto Trait Implementations§
impl Freeze for GetDocumentAnalysisResponse
impl RefUnwindSafe for GetDocumentAnalysisResponse
impl Send for GetDocumentAnalysisResponse
impl Sync for GetDocumentAnalysisResponse
impl Unpin for GetDocumentAnalysisResponse
impl UnwindSafe for GetDocumentAnalysisResponse
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