pub struct UpdateChatBlockList {
pub chat_id: i64,
pub block_list: Option<BlockList>,
}
Expand description
A chat was blocked or unblocked
Fields§
§chat_id: i64
Chat identifier
block_list: Option<BlockList>
Block list to which the chat is added; may be null if none
Trait Implementations§
Source§impl Clone for UpdateChatBlockList
impl Clone for UpdateChatBlockList
Source§fn clone(&self) -> UpdateChatBlockList
fn clone(&self) -> UpdateChatBlockList
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 UpdateChatBlockList
impl Debug for UpdateChatBlockList
Source§impl Default for UpdateChatBlockList
impl Default for UpdateChatBlockList
Source§fn default() -> UpdateChatBlockList
fn default() -> UpdateChatBlockList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateChatBlockList
impl<'de> Deserialize<'de> for UpdateChatBlockList
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 UpdateChatBlockList
impl PartialEq for UpdateChatBlockList
Source§impl Serialize for UpdateChatBlockList
impl Serialize for UpdateChatBlockList
impl StructuralPartialEq for UpdateChatBlockList
Auto Trait Implementations§
impl Freeze for UpdateChatBlockList
impl RefUnwindSafe for UpdateChatBlockList
impl Send for UpdateChatBlockList
impl Sync for UpdateChatBlockList
impl Unpin for UpdateChatBlockList
impl UnwindSafe for UpdateChatBlockList
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