pub type Result<T = ()> = Result<T, CapturedError>;Expand description
A type alias for a result that can be either a boxed error or a value
This is useful to avoid having to use Result<T, CapturedError> everywhere
Aliased Type§
enum Result<T = ()> {
Ok(T),
Err(CapturedError),
}