pub trait IClosable_Impl: Sized {
    // Required method
    fn Close(&self) -> Result<()>;
}

Required Methods§

fn Close(&self) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§