mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
Make CommandRepl
's methods #[must_use]
This commit is contained in:
parent
d90a9ff2e4
commit
0fb9399201
1 changed files with 2 additions and 0 deletions
|
@ -69,6 +69,7 @@ pub trait CommandRepl {
|
|||
/// A REPL for commands.
|
||||
///
|
||||
/// See [`CommandRepl`] for more details.
|
||||
#[must_use]
|
||||
fn repl<'a, R, H, Args>(bot: R, handler: H) -> BoxFuture<'a, ()>
|
||||
where
|
||||
R: Requester + Clone + Send + Sync + 'static,
|
||||
|
@ -81,6 +82,7 @@ pub trait CommandRepl {
|
|||
/// A REPL for commands with a custom [`UpdateListener`].
|
||||
///
|
||||
/// See [`CommandRepl`] for more details.
|
||||
#[must_use]
|
||||
fn repl_with_listener<'a, R, H, L, Args>(bot: R, handler: H, listener: L) -> BoxFuture<'a, ()>
|
||||
where
|
||||
H: Injectable<DependencyMap, ResponseResult<()>, Args> + Send + Sync + 'static,
|
||||
|
|
Loading…
Reference in a new issue