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),
}pub type ChatbotResult<T> = Result<T, ChatbotError>;Used as the result types for all of chatbot.
pub enum ChatbotResult<T> {
Ok(T),
Err(ChatbotError),
}