FinallyStreamExt

Trait FinallyStreamExt 

Source
pub trait FinallyStreamExt<S: Stream>: Stream + Sized {
    // Provided method
    fn finally<F: FnOnce()>(self, f: F) -> FinallyStream<Self, F> { ... }
}

Provided Methods§

Source

fn finally<F: FnOnce()>(self, f: F) -> FinallyStream<Self, F>

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.

Implementors§