Struct tbot::contexts::ChatMember
source · #[non_exhaustive]pub struct ChatMember {
pub bot: Bot,
pub chat: Chat,
pub from: User,
pub date: i64,
pub before: Member,
pub after: Member,
pub invite_link: Option<InviteLink>,
}
Expand description
The context for chat_member
handlers.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bot: Bot
A bot for calling API without information inference.
chat: Chat
The chat in which the change occured.
from: User
The user who caused the change.
date: i64
Timestamp when this change occured.
before: Member
Previous information about the member.
after: Member
New information about the member.
invite_link: Option<InviteLink>
The invite link which the user used to join the chat.
Trait Implementations§
source§impl Clone for ChatMember
impl Clone for ChatMember
source§fn clone(&self) -> ChatMember
fn clone(&self) -> ChatMember
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 more