pub struct UpdateChatUserTyping {
pub chat_id: i64,
pub from_id: Peer,
pub action: SendMessageAction,
}Expand description
Generated from:
updateChatUserTyping#83487af0 chat_id:long from_id:Peer action:SendMessageAction = UpdateFields§
§chat_id: i64§from_id: Peer§action: SendMessageActionTrait Implementations§
Source§impl Clone for UpdateChatUserTyping
impl Clone for UpdateChatUserTyping
Source§fn clone(&self) -> UpdateChatUserTyping
fn clone(&self) -> UpdateChatUserTyping
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 UpdateChatUserTyping
impl Debug for UpdateChatUserTyping
Source§impl Deserializable for UpdateChatUserTyping
impl Deserializable for UpdateChatUserTyping
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<UpdateChatUserTyping> for Update
impl From<UpdateChatUserTyping> for Update
Source§fn from(x: UpdateChatUserTyping) -> Self
fn from(x: UpdateChatUserTyping) -> Self
Converts to this type from the input type.
Source§impl Identifiable for UpdateChatUserTyping
impl Identifiable for UpdateChatUserTyping
Source§const CONSTRUCTOR_ID: u32 = 0x83487af0
const CONSTRUCTOR_ID: u32 = 0x83487af0
The constructor ID as specified in the TL schema.
Source§impl PartialEq for UpdateChatUserTyping
impl PartialEq for UpdateChatUserTyping
Source§impl Serializable for UpdateChatUserTyping
impl Serializable for UpdateChatUserTyping
Source§impl TryFrom<Update> for UpdateChatUserTyping
impl TryFrom<Update> for UpdateChatUserTyping
impl StructuralPartialEq for UpdateChatUserTyping
Auto Trait Implementations§
impl Freeze for UpdateChatUserTyping
impl RefUnwindSafe for UpdateChatUserTyping
impl Send for UpdateChatUserTyping
impl Sync for UpdateChatUserTyping
impl Unpin for UpdateChatUserTyping
impl UnsafeUnpin for UpdateChatUserTyping
impl UnwindSafe for UpdateChatUserTyping
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