[][src]Struct carapax::CommandsHandler

pub struct CommandsHandler<C> { /* fields omitted */ }

A simple commands handler

Just takes a first command from a message and ignores others. Assumes that all text after command is arguments. Use quotes in order to include spaces in argument: 'hello word'

Methods

impl<C> CommandsHandler<C>[src]

pub fn add_handler<S, H>(self, name: S, handler: H) -> Self where
    S: Into<String>,
    H: CommandHandler<C> + Send + Sync + 'static, 
[src]

Add command handler

Arguments

  • name - Command name (starts with /)
  • handler - Command handler

pub fn not_found_handler<H>(self, handler: H) -> Self where
    H: CommandHandler<C> + Send + Sync + 'static, 
[src]

Add not found command handler

Trait Implementations

impl<C> MessageHandler<C> for CommandsHandler<C>[src]

impl<C> Default for CommandsHandler<C>[src]

Auto Trait Implementations

impl<C> Send for CommandsHandler<C>

impl<C> Sync for CommandsHandler<C>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Erased for T