conogram 0.2.19

An async wrapper for Telegram Bot API
Documentation
pub(crate) mod deserialize_utils;

#[macro_export]
///```ignore
///Trait for Type {
///    // Code
///}
///```
macro_rules! impl_trait {
    ($trait: ident for $t: ty {$($impl: tt)*}) => {
        impl $trait for $t {
            $($impl)*
        }
        impl $trait for &$t {
            $($impl)*
        }
        impl $trait for &mut $t {
            $($impl)*
        }
    };
}