pub type Result<T> = Result<T, RuntimeError>;Expand description
Shorthand alias for std::result::Result<T, RuntimeError>.
Used throughout this crate so callers never have to spell out the full error type on every return position.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(RuntimeError),
}