Struct aws_sdk_textract::types::LendingDetection
source · #[non_exhaustive]pub struct LendingDetection { /* private fields */ }Expand description
The results extracted for a lending document.
Implementations§
source§impl LendingDetection
impl LendingDetection
sourcepub fn text(&self) -> Option<&str>
pub fn text(&self) -> Option<&str>
The text extracted for a detected value in a lending document.
sourcepub fn selection_status(&self) -> Option<&SelectionStatus>
pub fn selection_status(&self) -> Option<&SelectionStatus>
The selection status of a selection element, such as an option button or check box.
sourcepub fn geometry(&self) -> Option<&Geometry>
pub fn geometry(&self) -> Option<&Geometry>
Information about where the following items are located on a document page: detected page, text, key-value pairs, tables, table cells, and selection elements.
sourcepub fn confidence(&self) -> Option<f32>
pub fn confidence(&self) -> Option<f32>
The confidence level for the text of a detected value in a lending document.
source§impl LendingDetection
impl LendingDetection
sourcepub fn builder() -> LendingDetectionBuilder
pub fn builder() -> LendingDetectionBuilder
Creates a new builder-style object to manufacture LendingDetection.
Trait Implementations§
source§impl Clone for LendingDetection
impl Clone for LendingDetection
source§fn clone(&self) -> LendingDetection
fn clone(&self) -> LendingDetection
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 LendingDetection
impl Debug for LendingDetection
source§impl PartialEq<LendingDetection> for LendingDetection
impl PartialEq<LendingDetection> for LendingDetection
source§fn eq(&self, other: &LendingDetection) -> bool
fn eq(&self, other: &LendingDetection) -> bool
This method tests for
self and other values to be equal, and is used
by ==.