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