pub struct PutCommentReactionInput {
pub comment_id: String,
pub reaction_value: String,
}Fields§
§comment_id: StringThe ID of the comment to which you want to add or update a reaction.
reaction_value: StringThe emoji reaction you want to add or update. To remove a reaction, provide a value of blank or null. You can also provide the value of none. For information about emoji reaction values supported in AWS CodeCommit, see the AWS CodeCommit User Guide.
Trait Implementations§
Source§impl Clone for PutCommentReactionInput
impl Clone for PutCommentReactionInput
Source§fn clone(&self) -> PutCommentReactionInput
fn clone(&self) -> PutCommentReactionInput
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 PutCommentReactionInput
impl Debug for PutCommentReactionInput
Source§impl Default for PutCommentReactionInput
impl Default for PutCommentReactionInput
Source§fn default() -> PutCommentReactionInput
fn default() -> PutCommentReactionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutCommentReactionInput
impl PartialEq for PutCommentReactionInput
Source§impl Serialize for PutCommentReactionInput
impl Serialize for PutCommentReactionInput
impl StructuralPartialEq for PutCommentReactionInput
Auto Trait Implementations§
impl Freeze for PutCommentReactionInput
impl RefUnwindSafe for PutCommentReactionInput
impl Send for PutCommentReactionInput
impl Sync for PutCommentReactionInput
impl Unpin for PutCommentReactionInput
impl UnwindSafe for PutCommentReactionInput
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