Struct aws_sdk_textract::model::LineItemGroup [−][src]
#[non_exhaustive]pub struct LineItemGroup {
pub line_item_group_index: Option<i32>,
pub line_items: Option<Vec<LineItemFields>>,
}
Expand description
A grouping of tables which contain LineItems, with each table identified by the table's LineItemGroupIndex
.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.line_item_group_index: 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.
line_items: Option<Vec<LineItemFields>>
The breakdown of information on a particular line of a table.
Implementations
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.
The breakdown of information on a particular line of a table.
Creates a new builder-style object to manufacture LineItemGroup
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for LineItemGroup
impl Send for LineItemGroup
impl Sync for LineItemGroup
impl Unpin for LineItemGroup
impl UnwindSafe for LineItemGroup
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more