Struct aws_sdk_codeguruprofiler::types::UserFeedback
source · #[non_exhaustive]pub struct UserFeedback {
pub type: FeedbackType,
}
Expand description
Feedback that can be submitted for each instance of an anomaly by the user. Feedback is be used for improvements in generating recommendations for the application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.type: FeedbackType
Optional Positive
or Negative
feedback submitted by the user about whether the recommendation is useful or not.
Implementations§
source§impl UserFeedback
impl UserFeedback
sourcepub fn type(&self) -> &FeedbackType
pub fn type(&self) -> &FeedbackType
Optional Positive
or Negative
feedback submitted by the user about whether the recommendation is useful or not.
source§impl UserFeedback
impl UserFeedback
sourcepub fn builder() -> UserFeedbackBuilder
pub fn builder() -> UserFeedbackBuilder
Creates a new builder-style object to manufacture UserFeedback
.
Trait Implementations§
source§impl Clone for UserFeedback
impl Clone for UserFeedback
source§fn clone(&self) -> UserFeedback
fn clone(&self) -> UserFeedback
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 UserFeedback
impl Debug for UserFeedback
source§impl PartialEq for UserFeedback
impl PartialEq for UserFeedback
source§fn eq(&self, other: &UserFeedback) -> bool
fn eq(&self, other: &UserFeedback) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UserFeedback
Auto Trait Implementations§
impl RefUnwindSafe for UserFeedback
impl Send for UserFeedback
impl Sync for UserFeedback
impl Unpin for UserFeedback
impl UnwindSafe for UserFeedback
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>
Creates a shared type from an unshared type.