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