pub type ValueResult<T, U> = Result<T, ValueError<U>>;
Expand description
A result type for operations on a Valueable
.
Either returns something of type T
. Or a ValueError
over U
.
Aliased Type§
pub enum ValueResult<T, U> {
Ok(T),
Err(ValueError<U>),
}