Struct teloxide_core::payloads::GetChatMember
source · pub struct GetChatMember {
pub chat_id: Recipient,
pub user_id: UserId,
}
Expand description
Use this method to get information about a member of a chat. Returns a ChatMember
object on success.
Fields§
§chat_id: Recipient
Unique identifier for the target chat or username of the target channel (in the format @channelusername
)
user_id: UserId
Unique identifier of the target user
Implementations§
Trait Implementations§
source§impl Clone for GetChatMember
impl Clone for GetChatMember
source§impl Debug for GetChatMember
impl Debug for GetChatMember
source§impl Hash for GetChatMember
impl Hash for GetChatMember
source§impl PartialEq<GetChatMember> for GetChatMember
impl PartialEq<GetChatMember> for GetChatMember
source§fn eq(&self, other: &GetChatMember) -> bool
fn eq(&self, other: &GetChatMember) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Payload for GetChatMember
impl Payload for GetChatMember
§type Output = ChatMember
type Output = ChatMember
The return type of a Telegram method. Read more
source§fn timeout_hint(&self) -> Option<Duration>
fn timeout_hint(&self) -> Option<Duration>
If this payload may take long time to execute (e.g.
GetUpdates
with
big timeout
), the minimum timeout that should be used.source§impl Serialize for GetChatMember
impl Serialize for GetChatMember
impl Eq for GetChatMember
impl StructuralEq for GetChatMember
impl StructuralPartialEq for GetChatMember
Auto Trait Implementations§
impl RefUnwindSafe for GetChatMember
impl Send for GetChatMember
impl Sync for GetChatMember
impl Unpin for GetChatMember
impl UnwindSafe for GetChatMember
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.