ChatbotResult

Type Alias ChatbotResult 

Source
pub type ChatbotResult<T> = Result<T, ChatbotError>;
Expand description

Used as the result types for all of chatbot.

Aliased Type§

pub enum ChatbotResult<T> {
    Ok(T),
    Err(ChatbotError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ChatbotError)

Contains the error value