Struct aws_sdk_textract::model::DocumentGroup
source · #[non_exhaustive]pub struct DocumentGroup { /* private fields */ }
Expand description
Summary information about documents grouped by the same document type.
Implementations§
source§impl DocumentGroup
impl DocumentGroup
sourcepub fn type(&self) -> Option<&str>
pub fn type(&self) -> Option<&str>
The type of document that Amazon Textract has detected. See LINK for a list of all types returned by Textract.
sourcepub fn split_documents(&self) -> Option<&[SplitDocument]>
pub fn split_documents(&self) -> Option<&[SplitDocument]>
An array that contains information about the pages of a document, defined by logical boundary.
sourcepub fn detected_signatures(&self) -> Option<&[DetectedSignature]>
pub fn detected_signatures(&self) -> Option<&[DetectedSignature]>
A list of the detected signatures found in a document group.
sourcepub fn undetected_signatures(&self) -> Option<&[UndetectedSignature]>
pub fn undetected_signatures(&self) -> Option<&[UndetectedSignature]>
A list of any expected signatures not found in a document group.
source§impl DocumentGroup
impl DocumentGroup
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DocumentGroup
.
Trait Implementations§
source§impl Clone for DocumentGroup
impl Clone for DocumentGroup
source§fn clone(&self) -> DocumentGroup
fn clone(&self) -> DocumentGroup
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 DocumentGroup
impl Debug for DocumentGroup
source§impl PartialEq<DocumentGroup> for DocumentGroup
impl PartialEq<DocumentGroup> for DocumentGroup
source§fn eq(&self, other: &DocumentGroup) -> bool
fn eq(&self, other: &DocumentGroup) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.