Trait sourceview5::prelude::AppLaunchContextExt
source · pub trait AppLaunchContextExt: IsA<AppLaunchContext> + Sealed + 'static {
// Provided methods
fn display(
&self,
info: &impl IsA<AppInfo>,
files: &[File],
) -> Option<GString> { ... }
fn environment(&self) -> Vec<OsString> { ... }
fn startup_notify_id(
&self,
info: &impl IsA<AppInfo>,
files: &[File],
) -> Option<GString> { ... }
fn launch_failed(&self, startup_notify_id: &str) { ... }
fn setenv(&self, variable: impl AsRef<OsStr>, value: impl AsRef<OsStr>) { ... }
fn unsetenv(&self, variable: impl AsRef<OsStr>) { ... }
fn connect_launch_failed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &str) + 'static { ... }
fn connect_launched<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, &AppInfo, &Variant) + 'static { ... }
}
Provided Methods§
fn display(&self, info: &impl IsA<AppInfo>, files: &[File]) -> Option<GString>
fn environment(&self) -> Vec<OsString>
fn startup_notify_id( &self, info: &impl IsA<AppInfo>, files: &[File], ) -> Option<GString>
fn launch_failed(&self, startup_notify_id: &str)
fn setenv(&self, variable: impl AsRef<OsStr>, value: impl AsRef<OsStr>)
fn unsetenv(&self, variable: impl AsRef<OsStr>)
fn connect_launch_failed<F>(&self, f: F) -> SignalHandlerId
fn connect_launched<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.