Skip to main content

BotResult

Type Alias BotResult 

Source
pub type BotResult<T> = Result<T, BotError>;
Expand description

A specialised Result type for rustigram bot operations.

Aliased Type§

pub enum BotResult<T> {
    Ok(T),
    Err(BotError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(BotError)

Contains the error value