pub struct UpdateChatAddedToList {
pub chat_id: i64,
pub chat_list: ChatList,
}Expand description
A chat was added to a chat list
Fields§
§chat_id: i64Chat identifier
chat_list: ChatListThe chat list to which the chat was added
Trait Implementations§
Source§impl Clone for UpdateChatAddedToList
impl Clone for UpdateChatAddedToList
Source§fn clone(&self) -> UpdateChatAddedToList
fn clone(&self) -> UpdateChatAddedToList
Returns a copy 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 UpdateChatAddedToList
impl Debug for UpdateChatAddedToList
Source§impl<'de> Deserialize<'de> for UpdateChatAddedToList
impl<'de> Deserialize<'de> for UpdateChatAddedToList
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 UpdateChatAddedToList
impl PartialEq for UpdateChatAddedToList
Source§impl Serialize for UpdateChatAddedToList
impl Serialize for UpdateChatAddedToList
impl StructuralPartialEq for UpdateChatAddedToList
Auto Trait Implementations§
impl Freeze for UpdateChatAddedToList
impl RefUnwindSafe for UpdateChatAddedToList
impl Send for UpdateChatAddedToList
impl Sync for UpdateChatAddedToList
impl Unpin for UpdateChatAddedToList
impl UnwindSafe for UpdateChatAddedToList
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