Struct teloxide_core::payloads::GetChatMembersCount
source · pub struct GetChatMembersCount {
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 GetChatMembersCount
impl Clone for GetChatMembersCount
source§impl Debug for GetChatMembersCount
impl Debug for GetChatMembersCount
source§impl Hash for GetChatMembersCount
impl Hash for GetChatMembersCount
source§impl PartialEq<GetChatMembersCount> for GetChatMembersCount
impl PartialEq<GetChatMembersCount> for GetChatMembersCount
source§fn eq(&self, other: &GetChatMembersCount) -> bool
fn eq(&self, other: &GetChatMembersCount) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Payload for GetChatMembersCount
impl Payload for GetChatMembersCount
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 GetChatMembersCount
impl Serialize for GetChatMembersCount
impl Eq for GetChatMembersCount
impl StructuralEq for GetChatMembersCount
impl StructuralPartialEq for GetChatMembersCount
Auto Trait Implementations§
impl RefUnwindSafe for GetChatMembersCount
impl Send for GetChatMembersCount
impl Sync for GetChatMembersCount
impl Unpin for GetChatMembersCount
impl UnwindSafe for GetChatMembersCount
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.