pub enum InlineQueryChatType {
Sender,
Private,
Group,
Supergroup,
Channel,
}Expand description
Represents a type of the chat, from which the inline query was sent.
Variants§
Sender
A private chat with the sender of the inline query.
Private
A private chat.
Group
A group chat.
Supergroup
A supergroup chat.
Channel
A channel chat.
Trait Implementations§
Source§impl Clone for InlineQueryChatType
impl Clone for InlineQueryChatType
Source§fn clone(&self) -> InlineQueryChatType
fn clone(&self) -> InlineQueryChatType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InlineQueryChatType
impl Debug for InlineQueryChatType
Source§impl<'de> Deserialize<'de> for InlineQueryChatType
impl<'de> Deserialize<'de> for InlineQueryChatType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for InlineQueryChatType
impl PartialEq for InlineQueryChatType
Source§impl PartialOrd for InlineQueryChatType
impl PartialOrd for InlineQueryChatType
Source§impl Serialize for InlineQueryChatType
impl Serialize for InlineQueryChatType
impl Copy for InlineQueryChatType
impl StructuralPartialEq for InlineQueryChatType
Auto Trait Implementations§
impl Freeze for InlineQueryChatType
impl RefUnwindSafe for InlineQueryChatType
impl Send for InlineQueryChatType
impl Sync for InlineQueryChatType
impl Unpin for InlineQueryChatType
impl UnwindSafe for InlineQueryChatType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more