pub struct ReactionForComment {
pub reaction: Option<ReactionValueFormats>,
pub reaction_users: Option<Vec<String>>,
pub reactions_from_deleted_users_count: Option<i64>,
}Expand description
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§
Source§impl Clone for ReactionForComment
impl Clone for ReactionForComment
Source§fn clone(&self) -> ReactionForComment
fn clone(&self) -> ReactionForComment
Returns a duplicate 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 ReactionForComment
impl Debug for ReactionForComment
Source§impl Default for ReactionForComment
impl Default for ReactionForComment
Source§fn default() -> ReactionForComment
fn default() -> ReactionForComment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReactionForComment
impl<'de> Deserialize<'de> for ReactionForComment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ReactionForComment
impl PartialEq for ReactionForComment
impl StructuralPartialEq for ReactionForComment
Auto Trait Implementations§
impl Freeze for ReactionForComment
impl RefUnwindSafe for ReactionForComment
impl Send for ReactionForComment
impl Sync for ReactionForComment
impl Unpin for ReactionForComment
impl UnwindSafe for ReactionForComment
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