pub enum BotCommandScope {
Default,
AllPrivateChats,
AllGroupChats,
AllChatAdministrators,
Chat {
chat_id: ChatId,
},
ChatAdministrators {
chat_id: ChatId,
},
ChatMember {
chat_id: ChatId,
user_id: i64,
},
}Expand description
Bot command scope — defines where a specific list of commands applies.
Variants§
Default
Default scope — used when no more specific scope is applicable.
AllPrivateChats
Covers all private chats.
AllGroupChats
Covers all group and supergroup chats.
AllChatAdministrators
Covers all group and supergroup chat administrators.
Chat
Covers a specific chat.
ChatAdministrators
Covers all administrators of a specific group or supergroup.
ChatMember
Covers a specific member of a group or supergroup.
Trait Implementations§
Source§impl Clone for BotCommandScope
impl Clone for BotCommandScope
Source§fn clone(&self) -> BotCommandScope
fn clone(&self) -> BotCommandScope
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 BotCommandScope
impl Debug for BotCommandScope
Source§impl<'de> Deserialize<'de> for BotCommandScope
impl<'de> Deserialize<'de> for BotCommandScope
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 BotCommandScope
impl PartialEq for BotCommandScope
Source§impl Serialize for BotCommandScope
impl Serialize for BotCommandScope
impl Eq for BotCommandScope
impl StructuralPartialEq for BotCommandScope
Auto Trait Implementations§
impl Freeze for BotCommandScope
impl RefUnwindSafe for BotCommandScope
impl Send for BotCommandScope
impl Sync for BotCommandScope
impl Unpin for BotCommandScope
impl UnsafeUnpin for BotCommandScope
impl UnwindSafe for BotCommandScope
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