pub type Result<T> = Result<T, KnowledgeCardRetrievalError>;Aliased Type§
pub enum Result<T> {
Ok(T),
Err(KnowledgeCardRetrievalError),
}Variants§
Ok(T)
Contains the success value
Err(KnowledgeCardRetrievalError)
Contains the error value
pub type Result<T> = Result<T, KnowledgeCardRetrievalError>;pub enum Result<T> {
Ok(T),
Err(KnowledgeCardRetrievalError),
}Contains the success value
Contains the error value