pub trait ProcessCmdFuncs: Send + Sync {
    fn exit_process(&self, action: ProcessAction, code: i32) -> !;
}

Required Methods

Implementors