Struct teloxide_core::payloads::GetChat
source · pub struct GetChat {
pub chat_id: Recipient,
}
Expand description
Use this method to get up to date information about the chat (current name of the user for one-on-one conversations, current username of a user, group or channel, etc.). Returns a Chat
object 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 PartialEq<GetChat> for GetChat
impl PartialEq<GetChat> for GetChat
source§impl Payload for GetChat
impl Payload for GetChat
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.impl Eq for GetChat
impl StructuralEq for GetChat
impl StructuralPartialEq for GetChat
Auto Trait Implementations§
impl RefUnwindSafe for GetChat
impl Send for GetChat
impl Sync for GetChat
impl Unpin for GetChat
impl UnwindSafe for GetChat
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.