Struct aws_sdk_textract::model::ExpenseDocument [−][src]
#[non_exhaustive]pub struct ExpenseDocument {
pub expense_index: Option<i32>,
pub summary_fields: Option<Vec<ExpenseField>>,
pub line_item_groups: Option<Vec<LineItemGroup>>,
}
Expand description
The structure holding all the information returned by AnalyzeExpense
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.expense_index: Option<i32>
Denotes which invoice or receipt in the document the information is coming from. First document will be 1, the second 2, and so on.
summary_fields: Option<Vec<ExpenseField>>
Any information found outside of a table by Amazon Textract.
line_item_groups: Option<Vec<LineItemGroup>>
Information detected on each table of a document, seperated into LineItems
.
Implementations
Denotes which invoice or receipt in the document the information is coming from. First document will be 1, the second 2, and so on.
Any information found outside of a table by Amazon Textract.
Information detected on each table of a document, seperated into LineItems
.
Creates a new builder-style object to manufacture ExpenseDocument
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 ExpenseDocument
impl Send for ExpenseDocument
impl Sync for ExpenseDocument
impl Unpin for ExpenseDocument
impl UnwindSafe for ExpenseDocument
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