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: RecipientUnique identifier for the target chat or username of the target channel (in the format @channelusername)
Implementations
Trait Implementations
sourceimpl Clone for GetChatMemberCount
impl Clone for GetChatMemberCount
sourcefn clone(&self) -> GetChatMemberCountⓘNotable traits for GetChatMemberCountimpl Payload for GetChatMemberCount type Output = u32;
fn clone(&self) -> GetChatMemberCountⓘNotable traits for GetChatMemberCountimpl Payload for GetChatMemberCount type Output = u32;
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for GetChatMemberCount
impl Debug for GetChatMemberCount
sourceimpl Hash for GetChatMemberCount
impl Hash for GetChatMemberCount
sourceimpl PartialEq<GetChatMemberCount> for GetChatMemberCount
impl PartialEq<GetChatMemberCount> for GetChatMemberCount
sourcefn eq(&self, other: &GetChatMemberCount) -> bool
fn eq(&self, other: &GetChatMemberCount) -> bool
sourceimpl Payload for GetChatMemberCount
impl Payload for GetChatMemberCount
sourcefn 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. Read moresourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.