pub trait FallibleCtx<'a>: FunctorContext<'a> {
    type Fallible: MonadFailAny<'a, T = Self::T>;
}

Required Associated Types§

source

type Fallible: MonadFailAny<'a, T = Self::T>

Type to allow improved support for Result evaluation. This is important for async applications stopping early.

Implementors§