pub type BotResult<T> = Result<T, BotError>;
A specialised Result type for rustigram bot operations.
Result
pub enum BotResult<T> { Ok(T), Err(BotError), }
Contains the success value
Contains the error value