pub trait Closable {
    fn close(self) -> Result<(), Error>;
}

Required methods

Implementors