pub trait ExitControllerProxyInterface: Send + Sync {
    // Required method
    fn exit(&self, code: i32) -> Result<(), Error>;
}

Required Methods§

source

fn exit(&self, code: i32) -> Result<(), Error>

Implementors§