Struct aws_sdk_textract::model::LineItemGroup
source · #[non_exhaustive]pub struct LineItemGroup { /* private fields */ }
Expand description
A grouping of tables which contain LineItems, with each table identified by the table's LineItemGroupIndex
.
Implementations§
source§impl LineItemGroup
impl LineItemGroup
sourcepub fn line_item_group_index(&self) -> Option<i32>
pub fn line_item_group_index(&self) -> Option<i32>
The number used to identify a specific table in a document. The first table encountered will have a LineItemGroupIndex of 1, the second 2, etc.
sourcepub fn line_items(&self) -> Option<&[LineItemFields]>
pub fn line_items(&self) -> Option<&[LineItemFields]>
The breakdown of information on a particular line of a table.
source§impl LineItemGroup
impl LineItemGroup
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LineItemGroup
.
Trait Implementations§
source§impl Clone for LineItemGroup
impl Clone for LineItemGroup
source§fn clone(&self) -> LineItemGroup
fn clone(&self) -> LineItemGroup
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 LineItemGroup
impl Debug for LineItemGroup
source§impl PartialEq<LineItemGroup> for LineItemGroup
impl PartialEq<LineItemGroup> for LineItemGroup
source§fn eq(&self, other: &LineItemGroup) -> bool
fn eq(&self, other: &LineItemGroup) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.