pub trait TryIgnore<Item>{
// Required methods
fn ignore_err(self) -> impl Stream<Item = Item> + Send;
fn ignore_ok(self) -> impl Stream<Item = Error> + Send;
}Required Methods§
fn ignore_err(self) -> impl Stream<Item = Item> + Send
fn ignore_ok(self) -> impl Stream<Item = Error> + Send
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.