Closer

Trait Closer 

Source
pub trait Closer {
    // Required method
    fn remove_from<W: Open>(&mut self, w: W) -> Result<(), W::Error>;
}

Required Methods§

Source

fn remove_from<W: Open>(&mut self, w: W) -> Result<(), W::Error>

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§