Struct teloxide_core::payloads::GetChatMemberCount
source · pub struct GetChatMemberCount {
pub chat_id: Recipient,
}
Expand description
Use this method to get the number of members in a chat. Returns Int on success.
Fields§
§chat_id: Recipient
Unique identifier for the target chat or username of the target channel (in the format @channelusername
)
Implementations§
Trait Implementations§
source§impl Clone for GetChatMemberCount
impl Clone for GetChatMemberCount
source§impl Debug for GetChatMemberCount
impl Debug for GetChatMemberCount
source§impl Hash for GetChatMemberCount
impl Hash for GetChatMemberCount
source§impl PartialEq<GetChatMemberCount> for GetChatMemberCount
impl PartialEq<GetChatMemberCount> for GetChatMemberCount
source§fn eq(&self, other: &GetChatMemberCount) -> bool
fn eq(&self, other: &GetChatMemberCount) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Payload for GetChatMemberCount
impl Payload for GetChatMemberCount
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 GetChatMemberCount
impl Serialize for GetChatMemberCount
impl Eq for GetChatMemberCount
impl StructuralEq for GetChatMemberCount
impl StructuralPartialEq for GetChatMemberCount
Auto Trait Implementations§
impl RefUnwindSafe for GetChatMemberCount
impl Send for GetChatMemberCount
impl Sync for GetChatMemberCount
impl Unpin for GetChatMemberCount
impl UnwindSafe for GetChatMemberCount
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.