Struct aws_sdk_textract::output::AnalyzeDocumentOutput
source · #[non_exhaustive]pub struct AnalyzeDocumentOutput { /* private fields */ }Implementations§
source§impl AnalyzeDocumentOutput
impl AnalyzeDocumentOutput
sourcepub fn document_metadata(&self) -> Option<&DocumentMetadata>
pub fn document_metadata(&self) -> Option<&DocumentMetadata>
Metadata about the analyzed document. An example is the number of pages.
sourcepub fn blocks(&self) -> Option<&[Block]>
pub fn blocks(&self) -> Option<&[Block]>
The items that are detected and analyzed by AnalyzeDocument.
sourcepub fn human_loop_activation_output(&self) -> Option<&HumanLoopActivationOutput>
pub fn human_loop_activation_output(&self) -> Option<&HumanLoopActivationOutput>
Shows the results of the human in the loop evaluation.
sourcepub fn analyze_document_model_version(&self) -> Option<&str>
pub fn analyze_document_model_version(&self) -> Option<&str>
The version of the model used to analyze the document.
source§impl AnalyzeDocumentOutput
impl AnalyzeDocumentOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AnalyzeDocumentOutput.
Trait Implementations§
source§impl Clone for AnalyzeDocumentOutput
impl Clone for AnalyzeDocumentOutput
source§fn clone(&self) -> AnalyzeDocumentOutput
fn clone(&self) -> AnalyzeDocumentOutput
Returns a copy 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 AnalyzeDocumentOutput
impl Debug for AnalyzeDocumentOutput
source§impl PartialEq<AnalyzeDocumentOutput> for AnalyzeDocumentOutput
impl PartialEq<AnalyzeDocumentOutput> for AnalyzeDocumentOutput
source§fn eq(&self, other: &AnalyzeDocumentOutput) -> bool
fn eq(&self, other: &AnalyzeDocumentOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.