Trait Close

pub trait Close: FnOnce() -> Result<(), Error> + 'static { }

Implementors§

§

impl<T> Close for T
where T: FnOnce() -> Result<(), Error> + 'static,