pub type PartialResult<T, E> = Result<T, (Option<T>, E)>;
Expand description

Like Result<T,E>, but allows for functions that can return partially complete work alongside an error.