Trait gio::prelude::ApplicationExtManual

source ·
pub trait ApplicationExtManual: Sealed + IsA<Application> {
    // Provided methods
    fn run(&self) -> ExitCode { ... }
    fn run_with_args<S: AsRef<str>>(&self, args: &[S]) -> ExitCode { ... }
    fn connect_open<F: Fn(&Self, &[File], &str) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn hold(&self) -> ApplicationHoldGuard { ... }
    fn mark_busy(&self) -> ApplicationBusyGuard { ... }
}

Provided Methods§

source

fn run(&self) -> ExitCode

source

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

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

Object Safety§

This trait is not object safe.

Implementors§