pub enum InputEncryptedChat {
InputEncryptedChat(InputEncryptedChat),
}Expand description
Variants§
InputEncryptedChat(InputEncryptedChat)
Trait Implementations§
Source§impl Clone for InputEncryptedChat
impl Clone for InputEncryptedChat
Source§fn clone(&self) -> InputEncryptedChat
fn clone(&self) -> InputEncryptedChat
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 InputEncryptedChat
impl Debug for InputEncryptedChat
Source§impl Deserializable for InputEncryptedChat
impl Deserializable for InputEncryptedChat
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<InputEncryptedChat> for InputEncryptedChat
impl From<InputEncryptedChat> for InputEncryptedChat
Source§fn from(x: InputEncryptedChat) -> Self
fn from(x: InputEncryptedChat) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InputEncryptedChat
impl PartialEq for InputEncryptedChat
Source§impl Serializable for InputEncryptedChat
impl Serializable for InputEncryptedChat
Source§impl TryFrom<InputEncryptedChat> for InputEncryptedChat
impl TryFrom<InputEncryptedChat> for InputEncryptedChat
Source§type Error = InputEncryptedChat
type Error = InputEncryptedChat
The type returned in the event of a conversion error.
impl StructuralPartialEq for InputEncryptedChat
Auto Trait Implementations§
impl Freeze for InputEncryptedChat
impl RefUnwindSafe for InputEncryptedChat
impl Send for InputEncryptedChat
impl Sync for InputEncryptedChat
impl Unpin for InputEncryptedChat
impl UnsafeUnpin for InputEncryptedChat
impl UnwindSafe for InputEncryptedChat
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