pub type Result<T> = Result<T, EagerError>;Expand description
A convenience Result alias for eager-dispatch operations.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(EagerError),
}pub type Result<T> = Result<T, EagerError>;A convenience Result alias for eager-dispatch operations.
pub enum Result<T> {
Ok(T),
Err(EagerError),
}