pub struct ReactionValueFormats {
pub emoji: Option<String>,
pub short_code: Option<String>,
pub unicode: Option<String>,
}Expand description
Information about the values for reactions to a comment. AWS CodeCommit supports a limited set of reactions.
Fields§
§emoji: Option<String>The Emoji Version 1.0 graphic of the reaction. These graphics are interpreted slightly differently on different operating systems.
short_code: Option<String>The emoji short code for the reaction. Short codes are interpreted slightly differently on different operating systems.
unicode: Option<String>The Unicode codepoint for the reaction.
Trait Implementations§
Source§impl Clone for ReactionValueFormats
impl Clone for ReactionValueFormats
Source§fn clone(&self) -> ReactionValueFormats
fn clone(&self) -> ReactionValueFormats
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 ReactionValueFormats
impl Debug for ReactionValueFormats
Source§impl Default for ReactionValueFormats
impl Default for ReactionValueFormats
Source§fn default() -> ReactionValueFormats
fn default() -> ReactionValueFormats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReactionValueFormats
impl<'de> Deserialize<'de> for ReactionValueFormats
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 ReactionValueFormats
impl PartialEq for ReactionValueFormats
impl StructuralPartialEq for ReactionValueFormats
Auto Trait Implementations§
impl Freeze for ReactionValueFormats
impl RefUnwindSafe for ReactionValueFormats
impl Send for ReactionValueFormats
impl Sync for ReactionValueFormats
impl Unpin for ReactionValueFormats
impl UnwindSafe for ReactionValueFormats
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