#[non_exhaustive]pub struct GetStoredQueryOutputBuilder { /* private fields */ }Expand description
A builder for GetStoredQueryOutput.
Implementations§
source§impl GetStoredQueryOutputBuilder
impl GetStoredQueryOutputBuilder
sourcepub fn stored_query(self, input: StoredQuery) -> Self
pub fn stored_query(self, input: StoredQuery) -> Self
Returns a StoredQuery object.
sourcepub fn set_stored_query(self, input: Option<StoredQuery>) -> Self
pub fn set_stored_query(self, input: Option<StoredQuery>) -> Self
Returns a StoredQuery object.
sourcepub fn get_stored_query(&self) -> &Option<StoredQuery>
pub fn get_stored_query(&self) -> &Option<StoredQuery>
Returns a StoredQuery object.
sourcepub fn build(self) -> GetStoredQueryOutput
pub fn build(self) -> GetStoredQueryOutput
Consumes the builder and constructs a GetStoredQueryOutput.
Trait Implementations§
source§impl Clone for GetStoredQueryOutputBuilder
impl Clone for GetStoredQueryOutputBuilder
source§fn clone(&self) -> GetStoredQueryOutputBuilder
fn clone(&self) -> GetStoredQueryOutputBuilder
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 GetStoredQueryOutputBuilder
impl Debug for GetStoredQueryOutputBuilder
source§impl Default for GetStoredQueryOutputBuilder
impl Default for GetStoredQueryOutputBuilder
source§fn default() -> GetStoredQueryOutputBuilder
fn default() -> GetStoredQueryOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetStoredQueryOutputBuilder
impl PartialEq for GetStoredQueryOutputBuilder
source§fn eq(&self, other: &GetStoredQueryOutputBuilder) -> bool
fn eq(&self, other: &GetStoredQueryOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetStoredQueryOutputBuilder
Auto Trait Implementations§
impl Freeze for GetStoredQueryOutputBuilder
impl RefUnwindSafe for GetStoredQueryOutputBuilder
impl Send for GetStoredQueryOutputBuilder
impl Sync for GetStoredQueryOutputBuilder
impl Unpin for GetStoredQueryOutputBuilder
impl UnwindSafe for GetStoredQueryOutputBuilder
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.