1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Contains traits for updates that infer some data from them, simplifying
//! calling several methods.

mod callback;
mod chat_methods;
mod forwardable;
mod pinnable;

pub use {
    callback::Callback, chat_methods::ChatMethods, forwardable::Forwardable,
    pinnable::Pinnable,
};