pub enum SecretChat {
SecretChat(SecretChat),
}Variants§
SecretChat(SecretChat)
Represents a secret chat
Trait Implementations§
Source§impl Clone for SecretChat
impl Clone for SecretChat
Source§fn clone(&self) -> SecretChat
fn clone(&self) -> SecretChat
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 SecretChat
impl Debug for SecretChat
Source§impl<'de> Deserialize<'de> for SecretChat
impl<'de> Deserialize<'de> for SecretChat
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 SecretChat
impl PartialEq for SecretChat
Source§impl Serialize for SecretChat
impl Serialize for SecretChat
impl StructuralPartialEq for SecretChat
Auto Trait Implementations§
impl Freeze for SecretChat
impl RefUnwindSafe for SecretChat
impl Send for SecretChat
impl Sync for SecretChat
impl Unpin for SecretChat
impl UnwindSafe for SecretChat
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