pub trait Nested<T, E: Split>where
Self: Sized,{
// Required method
fn into_nested(
self,
) -> Result<Result<T, <E as Split>::Jfyi>, <E as Split>::Fatal>;
}Expand description
Converts a flat, yet splitable error into a nested Result<Result<_,Jfyi>, Fatal>
error type.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.