Struct aws_sdk_textract::output::DetectDocumentTextOutput
source · #[non_exhaustive]pub struct DetectDocumentTextOutput { /* private fields */ }
Implementations§
source§impl DetectDocumentTextOutput
impl DetectDocumentTextOutput
sourcepub fn document_metadata(&self) -> Option<&DocumentMetadata>
pub fn document_metadata(&self) -> Option<&DocumentMetadata>
Metadata about the document. It contains the number of pages that are detected in the document.
sourcepub fn blocks(&self) -> Option<&[Block]>
pub fn blocks(&self) -> Option<&[Block]>
An array of Block
objects that contain the text that's detected in the document.
sourcepub fn detect_document_text_model_version(&self) -> Option<&str>
pub fn detect_document_text_model_version(&self) -> Option<&str>
source§impl DetectDocumentTextOutput
impl DetectDocumentTextOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DetectDocumentTextOutput
.
Trait Implementations§
source§impl Clone for DetectDocumentTextOutput
impl Clone for DetectDocumentTextOutput
source§fn clone(&self) -> DetectDocumentTextOutput
fn clone(&self) -> DetectDocumentTextOutput
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 more