pub type StackResult<T> = Result<T, StackError>;
Expand description
Shorthand for a Result
where the error type is a StackError
.
Aliased Type§
enum StackResult<T> {
Ok(T),
Err(StackError),
}
pub type StackResult<T> = Result<T, StackError>;
Shorthand for a Result
where the error type is a StackError
.
enum StackResult<T> {
Ok(T),
Err(StackError),
}