pub trait FusedFallibleLender: FallibleLender { }Expand description
Marker trait that ensures that a fallible lender will always continue to
yield Ok(None) once it has already returned Ok(None). After an error,
the behavior is implementation-defined.
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.