Struct aws_sdk_textract::types::builders::LineItemGroupBuilder
source · #[non_exhaustive]pub struct LineItemGroupBuilder { /* private fields */ }
Expand description
A builder for LineItemGroup
.
Implementations§
source§impl LineItemGroupBuilder
impl LineItemGroupBuilder
sourcepub fn line_item_group_index(self, input: i32) -> Self
pub fn line_item_group_index(self, input: i32) -> Self
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 set_line_item_group_index(self, input: Option<i32>) -> Self
pub fn set_line_item_group_index(self, input: Option<i32>) -> Self
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 get_line_item_group_index(&self) -> &Option<i32>
pub fn get_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, input: LineItemFields) -> Self
pub fn line_items(self, input: LineItemFields) -> Self
Appends an item to line_items
.
To override the contents of this collection use set_line_items
.
The breakdown of information on a particular line of a table.
sourcepub fn set_line_items(self, input: Option<Vec<LineItemFields>>) -> Self
pub fn set_line_items(self, input: Option<Vec<LineItemFields>>) -> Self
The breakdown of information on a particular line of a table.
sourcepub fn get_line_items(&self) -> &Option<Vec<LineItemFields>>
pub fn get_line_items(&self) -> &Option<Vec<LineItemFields>>
The breakdown of information on a particular line of a table.
sourcepub fn build(self) -> LineItemGroup
pub fn build(self) -> LineItemGroup
Consumes the builder and constructs a LineItemGroup
.
Trait Implementations§
source§impl Clone for LineItemGroupBuilder
impl Clone for LineItemGroupBuilder
source§fn clone(&self) -> LineItemGroupBuilder
fn clone(&self) -> LineItemGroupBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LineItemGroupBuilder
impl Debug for LineItemGroupBuilder
source§impl Default for LineItemGroupBuilder
impl Default for LineItemGroupBuilder
source§fn default() -> LineItemGroupBuilder
fn default() -> LineItemGroupBuilder
source§impl PartialEq for LineItemGroupBuilder
impl PartialEq for LineItemGroupBuilder
source§fn eq(&self, other: &LineItemGroupBuilder) -> bool
fn eq(&self, other: &LineItemGroupBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LineItemGroupBuilder
Auto Trait Implementations§
impl Freeze for LineItemGroupBuilder
impl RefUnwindSafe for LineItemGroupBuilder
impl Send for LineItemGroupBuilder
impl Sync for LineItemGroupBuilder
impl Unpin for LineItemGroupBuilder
impl UnwindSafe for LineItemGroupBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more