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