Struct aws_sdk_qconnect::types::builders::DataSummaryBuilder
source · #[non_exhaustive]pub struct DataSummaryBuilder { /* private fields */ }Expand description
A builder for DataSummary.
Implementations§
source§impl DataSummaryBuilder
impl DataSummaryBuilder
sourcepub fn reference(self, input: DataReference) -> Self
pub fn reference(self, input: DataReference) -> Self
Reference information about the content.
This field is required.sourcepub fn set_reference(self, input: Option<DataReference>) -> Self
pub fn set_reference(self, input: Option<DataReference>) -> Self
Reference information about the content.
sourcepub fn get_reference(&self) -> &Option<DataReference>
pub fn get_reference(&self) -> &Option<DataReference>
Reference information about the content.
sourcepub fn details(self, input: DataDetails) -> Self
pub fn details(self, input: DataDetails) -> Self
Details about the data.
This field is required.sourcepub fn set_details(self, input: Option<DataDetails>) -> Self
pub fn set_details(self, input: Option<DataDetails>) -> Self
Details about the data.
sourcepub fn get_details(&self) -> &Option<DataDetails>
pub fn get_details(&self) -> &Option<DataDetails>
Details about the data.
sourcepub fn build(self) -> DataSummary
pub fn build(self) -> DataSummary
Consumes the builder and constructs a DataSummary.
Trait Implementations§
source§impl Clone for DataSummaryBuilder
impl Clone for DataSummaryBuilder
source§fn clone(&self) -> DataSummaryBuilder
fn clone(&self) -> DataSummaryBuilder
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 DataSummaryBuilder
impl Debug for DataSummaryBuilder
source§impl Default for DataSummaryBuilder
impl Default for DataSummaryBuilder
source§fn default() -> DataSummaryBuilder
fn default() -> DataSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DataSummaryBuilder
impl PartialEq for DataSummaryBuilder
source§fn eq(&self, other: &DataSummaryBuilder) -> bool
fn eq(&self, other: &DataSummaryBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataSummaryBuilder
Auto Trait Implementations§
impl Freeze for DataSummaryBuilder
impl RefUnwindSafe for DataSummaryBuilder
impl Send for DataSummaryBuilder
impl Sync for DataSummaryBuilder
impl Unpin for DataSummaryBuilder
impl UnwindSafe for DataSummaryBuilder
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.