Struct aws_sdk_devopsguru::types::builders::InsightFeedbackBuilder
source · #[non_exhaustive]pub struct InsightFeedbackBuilder { /* private fields */ }
Expand description
A builder for InsightFeedback
.
Implementations§
source§impl InsightFeedbackBuilder
impl InsightFeedbackBuilder
sourcepub fn feedback(self, input: InsightFeedbackOption) -> Self
pub fn feedback(self, input: InsightFeedbackOption) -> Self
The feedback provided by the customer.
sourcepub fn set_feedback(self, input: Option<InsightFeedbackOption>) -> Self
pub fn set_feedback(self, input: Option<InsightFeedbackOption>) -> Self
The feedback provided by the customer.
sourcepub fn get_feedback(&self) -> &Option<InsightFeedbackOption>
pub fn get_feedback(&self) -> &Option<InsightFeedbackOption>
The feedback provided by the customer.
sourcepub fn build(self) -> InsightFeedback
pub fn build(self) -> InsightFeedback
Consumes the builder and constructs a InsightFeedback
.
Trait Implementations§
source§impl Clone for InsightFeedbackBuilder
impl Clone for InsightFeedbackBuilder
source§fn clone(&self) -> InsightFeedbackBuilder
fn clone(&self) -> InsightFeedbackBuilder
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 InsightFeedbackBuilder
impl Debug for InsightFeedbackBuilder
source§impl Default for InsightFeedbackBuilder
impl Default for InsightFeedbackBuilder
source§fn default() -> InsightFeedbackBuilder
fn default() -> InsightFeedbackBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InsightFeedbackBuilder
impl PartialEq for InsightFeedbackBuilder
source§fn eq(&self, other: &InsightFeedbackBuilder) -> bool
fn eq(&self, other: &InsightFeedbackBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InsightFeedbackBuilder
Auto Trait Implementations§
impl Freeze for InsightFeedbackBuilder
impl RefUnwindSafe for InsightFeedbackBuilder
impl Send for InsightFeedbackBuilder
impl Sync for InsightFeedbackBuilder
impl Unpin for InsightFeedbackBuilder
impl UnwindSafe for InsightFeedbackBuilder
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> 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.