pub struct ChatMemberLeft {
pub user: User,
}
Expand description
Represents a chat member that isn’t currently a member of the chat, but may join it themselves.
Fields§
§user: User
Information about the user
Implementations§
Trait Implementations§
Source§impl Clone for ChatMemberLeft
impl Clone for ChatMemberLeft
Source§fn clone(&self) -> ChatMemberLeft
fn clone(&self) -> ChatMemberLeft
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 ChatMemberLeft
impl Debug for ChatMemberLeft
Source§impl<'de> Deserialize<'de> for ChatMemberLeft
impl<'de> Deserialize<'de> for ChatMemberLeft
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
Auto Trait Implementations§
impl Freeze for ChatMemberLeft
impl RefUnwindSafe for ChatMemberLeft
impl Send for ChatMemberLeft
impl Sync for ChatMemberLeft
impl Unpin for ChatMemberLeft
impl UnwindSafe for ChatMemberLeft
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