[][src]Trait serenity::framework::Framework

pub trait Framework {
    fn dispatch(&mut self, _: Context, _: Message, _: &ThreadPool);
}

This trait allows for serenity to either use its builtin framework, or yours.

Required Methods

Implementations on Foreign Types

impl<F: Framework + ?Sized> Framework for Box<F>
[src]

impl<'a, F: Framework + ?Sized> Framework for &'a mut F
[src]

Implementors

impl Framework for StandardFramework
[src]