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