#[non_exhaustive]pub struct BatchGetPreparedStatementOutputBuilder { /* private fields */ }Expand description
A builder for BatchGetPreparedStatementOutput.
Implementations§
Source§impl BatchGetPreparedStatementOutputBuilder
impl BatchGetPreparedStatementOutputBuilder
Sourcepub fn prepared_statements(self, input: PreparedStatement) -> Self
pub fn prepared_statements(self, input: PreparedStatement) -> Self
Appends an item to prepared_statements.
To override the contents of this collection use set_prepared_statements.
The list of prepared statements returned.
Sourcepub fn set_prepared_statements(
self,
input: Option<Vec<PreparedStatement>>,
) -> Self
pub fn set_prepared_statements( self, input: Option<Vec<PreparedStatement>>, ) -> Self
The list of prepared statements returned.
Sourcepub fn get_prepared_statements(&self) -> &Option<Vec<PreparedStatement>>
pub fn get_prepared_statements(&self) -> &Option<Vec<PreparedStatement>>
The list of prepared statements returned.
Sourcepub fn unprocessed_prepared_statement_names(
self,
input: UnprocessedPreparedStatementName,
) -> Self
pub fn unprocessed_prepared_statement_names( self, input: UnprocessedPreparedStatementName, ) -> Self
Appends an item to unprocessed_prepared_statement_names.
To override the contents of this collection use set_unprocessed_prepared_statement_names.
A list of one or more prepared statements that were requested but could not be returned.
Sourcepub fn set_unprocessed_prepared_statement_names(
self,
input: Option<Vec<UnprocessedPreparedStatementName>>,
) -> Self
pub fn set_unprocessed_prepared_statement_names( self, input: Option<Vec<UnprocessedPreparedStatementName>>, ) -> Self
A list of one or more prepared statements that were requested but could not be returned.
Sourcepub fn get_unprocessed_prepared_statement_names(
&self,
) -> &Option<Vec<UnprocessedPreparedStatementName>>
pub fn get_unprocessed_prepared_statement_names( &self, ) -> &Option<Vec<UnprocessedPreparedStatementName>>
A list of one or more prepared statements that were requested but could not be returned.
Sourcepub fn build(self) -> BatchGetPreparedStatementOutput
pub fn build(self) -> BatchGetPreparedStatementOutput
Consumes the builder and constructs a BatchGetPreparedStatementOutput.
Trait Implementations§
Source§impl Clone for BatchGetPreparedStatementOutputBuilder
impl Clone for BatchGetPreparedStatementOutputBuilder
Source§fn clone(&self) -> BatchGetPreparedStatementOutputBuilder
fn clone(&self) -> BatchGetPreparedStatementOutputBuilder
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for BatchGetPreparedStatementOutputBuilder
impl Default for BatchGetPreparedStatementOutputBuilder
Source§fn default() -> BatchGetPreparedStatementOutputBuilder
fn default() -> BatchGetPreparedStatementOutputBuilder
Source§impl PartialEq for BatchGetPreparedStatementOutputBuilder
impl PartialEq for BatchGetPreparedStatementOutputBuilder
Source§fn eq(&self, other: &BatchGetPreparedStatementOutputBuilder) -> bool
fn eq(&self, other: &BatchGetPreparedStatementOutputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BatchGetPreparedStatementOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetPreparedStatementOutputBuilder
impl RefUnwindSafe for BatchGetPreparedStatementOutputBuilder
impl Send for BatchGetPreparedStatementOutputBuilder
impl Sync for BatchGetPreparedStatementOutputBuilder
impl Unpin for BatchGetPreparedStatementOutputBuilder
impl UnsafeUnpin for BatchGetPreparedStatementOutputBuilder
impl UnwindSafe for BatchGetPreparedStatementOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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