pub type BoxedComposableResult<T, E> = Result<T, BoxedComposableError<E>>;Expand description
Result alias with boxed ComposableError for reduced stack size.
§Type Parameters
T- The success value typeE- The core error type
Aliased Type§
pub enum BoxedComposableResult<T, E> {
Ok(T),
Err(Box<ComposableError<E>>),
}