Skip to main content

CommandDescriptions

Struct CommandDescriptions 

Source
pub struct CommandDescriptions<'a> { /* private fields */ }
Expand description

Command descriptions that can be shown to the user (e.g. as a part of /help message)

Most of the time you don’t need to create this struct yourself as it’s returned from BotCommands::descriptions.

Implementations§

Source§

impl<'a> CommandDescriptions<'a>

Source

pub const fn new(descriptions: &'a [CommandDescription<'a>]) -> Self

Creates new CommandDescriptions from a list of command descriptions.

Source

pub fn global_description(self, global_description: &'a str) -> Self

Sets the global description of these commands.

Source

pub fn username(self, bot_username: &'a str) -> Self

Sets the username of the bot.

After this method is called, returned instance of CommandDescriptions will append @bot_username to all commands. This is useful in groups, to disambiguate commands for different bots.

§Examples
use teloxide_ng::utils::command::{CommandDescription, CommandDescriptions};

let descriptions = CommandDescriptions::new(&[
    CommandDescription {
        prefix: "/",
        command: "start",
        description: "start this bot",
        aliases: &[],
    },
    CommandDescription {
        prefix: "/",
        command: "help",
        description: "show this message",
        aliases: &[],
    },
]);

assert_eq!(descriptions.to_string(), "/start — start this bot\n/help — show this message");
assert_eq!(
    descriptions.username("username_of_the_bot").to_string(),
    "/start@username_of_the_bot — start this bot\n/help@username_of_the_bot — show this \
     message"
);
Source

pub fn username_from_me(self, me: &'a Me) -> CommandDescriptions<'a>

Sets the username of the bot.

This is the same as username, but uses value returned from get_me method to get the username.

Examples found in repository?
examples/dispatching_features.rs (line 161)
145async fn simple_commands_handler(
146    cfg: ConfigParameters,
147    bot: Bot,
148    me: teloxide_ng::types::Me,
149    msg: Message,
150    cmd: SimpleCommand,
151) -> Result<(), teloxide_ng::RequestError> {
152    let text = match cmd {
153        SimpleCommand::Help => {
154            if msg.from.unwrap().id == cfg.bot_maintainer {
155                format!(
156                    "{}\n\n{}",
157                    SimpleCommand::descriptions(),
158                    MaintainerCommands::descriptions()
159                )
160            } else if msg.chat.is_group() || msg.chat.is_supergroup() {
161                SimpleCommand::descriptions().username_from_me(&me).to_string()
162            } else {
163                SimpleCommand::descriptions().to_string()
164            }
165        }
166        SimpleCommand::Maintainer => {
167            if msg.from.as_ref().unwrap().id == cfg.bot_maintainer {
168                "Maintainer is you!".into()
169            } else if let Some(username) = cfg.maintainer_username {
170                format!("Maintainer is @{username}")
171            } else {
172                format!("Maintainer ID is {}", cfg.bot_maintainer)
173            }
174        }
175        SimpleCommand::MyId => {
176            format!("{}", msg.from.unwrap().id)
177        }
178    };
179
180    bot.send_message(msg.chat.id, text).await?;
181
182    Ok(())
183}

Trait Implementations§

Source§

impl<'a> Clone for CommandDescriptions<'a>

Source§

fn clone(&self) -> CommandDescriptions<'a>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for CommandDescriptions<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for CommandDescriptions<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Erasable for T

Source§

const ACK_1_1_0: bool = true

Available on non-enforce_1_1_0_semantics only.
Whether this implementor has acknowledged the 1.1.0 update to unerase’s documented implementation requirements. Read more
Source§

unsafe fn unerase(this: NonNull<Erased>) -> NonNull<T>

Unerase this erased pointer. Read more
Source§

fn erase(this: NonNull<Self>) -> NonNull<Erased>

Turn this erasable pointer into an erased pointer. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T> ToStringFallible for T
where T: Display,

Source§

fn try_to_string(&self) -> Result<String, TryReserveError>

ToString::to_string, but without panic on OOM.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more