[][src]Struct rusoto_codeguru_reviewer::RecommendationFeedbackSummary

pub struct RecommendationFeedbackSummary {
    pub reactions: Option<Vec<String>>,
    pub recommendation_id: Option<String>,
    pub user_id: Option<String>,
}

Information about recommendation feedback summaries.

Fields

reactions: Option<Vec<String>>

List for storing reactions. Reactions are utf-8 text code for emojis.

recommendation_id: Option<String>

The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.

user_id: Option<String>

The ID of the user that gave the feedback.

The UserId is an IAM principal that can be specified as an AWS account ID or an Amazon Resource Name (ARN). For more information, see Specifying a Principal in the AWS Identity and Access Management User Guide.

Trait Implementations

impl Clone for RecommendationFeedbackSummary[src]

impl Debug for RecommendationFeedbackSummary[src]

impl Default for RecommendationFeedbackSummary[src]

impl<'de> Deserialize<'de> for RecommendationFeedbackSummary[src]

impl PartialEq<RecommendationFeedbackSummary> for RecommendationFeedbackSummary[src]

impl StructuralPartialEq for RecommendationFeedbackSummary[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.