[][src]Struct rusoto_codecommit::ReactionForComment

pub struct ReactionForComment {
    pub reaction: Option<ReactionValueFormats>,
    pub reaction_users: Option<Vec<String>>,
    pub reactions_from_deleted_users_count: Option<i64>,
}

Information about the reaction values provided by users on a comment.

Fields

reaction: Option<ReactionValueFormats>

The reaction for a specified comment.

reaction_users: Option<Vec<String>>

The Amazon Resource Names (ARNs) of users who have provided reactions to the comment.

reactions_from_deleted_users_count: Option<i64>

A numerical count of users who reacted with the specified emoji whose identities have been subsequently deleted from IAM. While these IAM users or roles no longer exist, the reactions might still appear in total reaction counts.

Trait Implementations

impl Clone for ReactionForComment[src]

impl Debug for ReactionForComment[src]

impl Default for ReactionForComment[src]

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

impl PartialEq<ReactionForComment> for ReactionForComment[src]

impl StructuralPartialEq for ReactionForComment[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.