Trait sourceview5::prelude::ApplicationExtManual

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

Provided Methods§

source

fn run(&self) -> ExitCode

source

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

source

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

source

fn hold(&self) -> ApplicationHoldGuard

source

fn mark_busy(&self) -> ApplicationBusyGuard

Object Safety§

This trait is not object safe.

Implementors§