pub type Result<T> = Result<T, DrasiError>;Expand description
Result type for drasi-lib operations.
This is the standard result type for all public API methods in drasi-lib.
It uses DrasiError which supports pattern matching on specific error variants.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(DrasiError),
}