pub trait IntoFaillble<O, E>: Future<Output = O> + Sized {
// Provided method
async fn into_fallible(self) -> Result<O, E> { ... }
}Provided Methods§
async fn into_fallible(self) -> Result<O, E>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".