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;
    fn hold(&self) -> ApplicationHoldGuard;
    fn mark_busy(&self) -> ApplicationBusyGuard;
}

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

source

fn hold(&self) -> ApplicationHoldGuard

source

fn mark_busy(&self) -> ApplicationBusyGuard

Implementors§