pub struct GetMyCommands {
pub scope: Option<BotCommandScope>,
pub language_code: Option<String>,
}Expand description
Use this method to get the current list of the bot’s commands for the given scope and user language. Returns Array of BotCommand on success. If commands aren’t set, an empty list is returned.
Fields§
§scope: Option<BotCommandScope>A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to BotCommandScopeDefault.
language_code: Option<String>A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands
Implementations§
Source§impl GetMyCommands
impl GetMyCommands
Sourcepub fn with_scope(self, scope: BotCommandScope) -> Self
pub fn with_scope(self, scope: BotCommandScope) -> Self
Set command scope
Sourcepub fn with_language_code(self, language_code: impl Into<String>) -> Self
pub fn with_language_code(self, language_code: impl Into<String>) -> Self
Set language code
Trait Implementations§
Source§impl Clone for GetMyCommands
impl Clone for GetMyCommands
Source§fn clone(&self) -> GetMyCommands
fn clone(&self) -> GetMyCommands
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 Serialize for GetMyCommands
impl Serialize for GetMyCommands
Source§impl TelegramMethod for GetMyCommands
impl TelegramMethod for GetMyCommands
Auto Trait Implementations§
impl Freeze for GetMyCommands
impl RefUnwindSafe for GetMyCommands
impl Send for GetMyCommands
impl Sync for GetMyCommands
impl Unpin for GetMyCommands
impl UnwindSafe for GetMyCommands
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