#[non_exhaustive]pub struct ImportTableOutputBuilder { /* private fields */ }
Expand description
A builder for ImportTableOutput
.
Implementations§
source§impl ImportTableOutputBuilder
impl ImportTableOutputBuilder
sourcepub fn import_table_description(self, input: ImportTableDescription) -> Self
pub fn import_table_description(self, input: ImportTableDescription) -> Self
Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
This field is required.sourcepub fn set_import_table_description(
self,
input: Option<ImportTableDescription>,
) -> Self
pub fn set_import_table_description( self, input: Option<ImportTableDescription>, ) -> Self
Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
sourcepub fn get_import_table_description(&self) -> &Option<ImportTableDescription>
pub fn get_import_table_description(&self) -> &Option<ImportTableDescription>
Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
sourcepub fn build(self) -> ImportTableOutput
pub fn build(self) -> ImportTableOutput
Consumes the builder and constructs a ImportTableOutput
.
Trait Implementations§
source§impl Clone for ImportTableOutputBuilder
impl Clone for ImportTableOutputBuilder
source§fn clone(&self) -> ImportTableOutputBuilder
fn clone(&self) -> ImportTableOutputBuilder
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 ImportTableOutputBuilder
impl Debug for ImportTableOutputBuilder
source§impl Default for ImportTableOutputBuilder
impl Default for ImportTableOutputBuilder
source§fn default() -> ImportTableOutputBuilder
fn default() -> ImportTableOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ImportTableOutputBuilder
impl PartialEq for ImportTableOutputBuilder
source§fn eq(&self, other: &ImportTableOutputBuilder) -> bool
fn eq(&self, other: &ImportTableOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImportTableOutputBuilder
Auto Trait Implementations§
impl Freeze for ImportTableOutputBuilder
impl RefUnwindSafe for ImportTableOutputBuilder
impl Send for ImportTableOutputBuilder
impl Sync for ImportTableOutputBuilder
impl Unpin for ImportTableOutputBuilder
impl UnwindSafe for ImportTableOutputBuilder
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.