pub enum ChatAvailableReactions {
All(ChatAvailableReactionsAll),
Some(ChatAvailableReactionsSome),
}
Variants§
All(ChatAvailableReactionsAll)
All reactions are available in the chat
Some(ChatAvailableReactionsSome)
Only specific reactions are available in the chat
Trait Implementations§
Source§impl Clone for ChatAvailableReactions
impl Clone for ChatAvailableReactions
Source§fn clone(&self) -> ChatAvailableReactions
fn clone(&self) -> ChatAvailableReactions
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 ChatAvailableReactions
impl Debug for ChatAvailableReactions
Source§impl<'de> Deserialize<'de> for ChatAvailableReactions
impl<'de> Deserialize<'de> for ChatAvailableReactions
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 ChatAvailableReactions
impl PartialEq for ChatAvailableReactions
Source§impl Serialize for ChatAvailableReactions
impl Serialize for ChatAvailableReactions
impl StructuralPartialEq for ChatAvailableReactions
Auto Trait Implementations§
impl Freeze for ChatAvailableReactions
impl RefUnwindSafe for ChatAvailableReactions
impl Send for ChatAvailableReactions
impl Sync for ChatAvailableReactions
impl Unpin for ChatAvailableReactions
impl UnwindSafe for ChatAvailableReactions
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