pub trait ApplicationExtManual {
    fn run(&self) -> i32;
    fn run_with_args<S: AsRef<str>>(&self, args: &[S]) -> i32;
    fn connect_open<F: Fn(&Self, &[File], &str) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

Implementors