pub struct ReactionData {
pub id: Box<str>,
pub action_id: Box<str>,
pub reactor_id_tag: Box<str>,
pub type: Box<str>,
pub content: Option<Box<str>>,
pub created_at: Timestamp,
}Expand description
Reaction data
Fields§
§id: Box<str>§action_id: Box<str>§reactor_id_tag: Box<str>§type: Box<str>§content: Option<Box<str>>§created_at: TimestampTrait Implementations§
Source§impl Clone for ReactionData
impl Clone for ReactionData
Source§fn clone(&self) -> ReactionData
fn clone(&self) -> ReactionData
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 ReactionData
impl Debug for ReactionData
Source§impl<'de> Deserialize<'de> for ReactionData
impl<'de> Deserialize<'de> for ReactionData
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
Auto Trait Implementations§
impl Freeze for ReactionData
impl RefUnwindSafe for ReactionData
impl Send for ReactionData
impl Sync for ReactionData
impl Unpin for ReactionData
impl UnsafeUnpin for ReactionData
impl UnwindSafe for ReactionData
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