pub enum PaidReactor {
PaidReactor(PaidReactor),
}Variants§
PaidReactor(PaidReactor)
Contains information about a user who added paid reactions
Trait Implementations§
Source§impl Clone for PaidReactor
impl Clone for PaidReactor
Source§fn clone(&self) -> PaidReactor
fn clone(&self) -> PaidReactor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PaidReactor
impl Debug for PaidReactor
Source§impl<'de> Deserialize<'de> for PaidReactor
impl<'de> Deserialize<'de> for PaidReactor
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 PaidReactor
impl PartialEq for PaidReactor
Source§fn eq(&self, other: &PaidReactor) -> bool
fn eq(&self, other: &PaidReactor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PaidReactor
impl Serialize for PaidReactor
impl StructuralPartialEq for PaidReactor
Auto Trait Implementations§
impl Freeze for PaidReactor
impl RefUnwindSafe for PaidReactor
impl Send for PaidReactor
impl Sync for PaidReactor
impl Unpin for PaidReactor
impl UnsafeUnpin for PaidReactor
impl UnwindSafe for PaidReactor
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