pub trait FutureReaderExt<T> {
// Required method
fn try_map<U: Lower + Lift + 'static>(
self,
store: impl AsContextMut,
fun: impl FnOnce(T) -> U + Send + 'static,
) -> Result<FutureReader<U>>;
}Required Methods§
fn try_map<U: Lower + Lift + 'static>( self, store: impl AsContextMut, fun: impl FnOnce(T) -> U + Send + 'static, ) -> Result<FutureReader<U>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".