pub trait ApplicationExtManual {
    // Required methods
    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§

source

fn run(&self) -> i32

source

fn run_with_args<S: AsRef<str>>(&self, args: &[S]) -> i32

source

fn connect_open<F: Fn(&Self, &[File], &str) + 'static>( &self, f: F ) -> SignalHandlerId

Implementors§