Trait sourceview5::prelude::AppInfoExtManual
source · pub trait AppInfoExtManual: Sealed + IsA<AppInfo> + 'static {
// Provided methods
fn launch_uris_async<P, Q, R>(
&self,
uris: &[&str],
context: Option<&P>,
cancellable: Option<&Q>,
callback: R,
)
where P: IsA<AppLaunchContext>,
Q: IsA<Cancellable>,
R: FnOnce(Result<(), Error>) + 'static { ... }
fn launch_uris_future<P>(
&self,
uris: &[&str],
context: Option<&P>,
) -> Pin<Box<dyn Future<Output = Result<(), Error>>>>
where P: IsA<AppLaunchContext> + Clone + 'static { ... }
}
Provided Methods§
fn launch_uris_async<P, Q, R>( &self, uris: &[&str], context: Option<&P>, cancellable: Option<&Q>, callback: R, )
fn launch_uris_future<P>( &self, uris: &[&str], context: Option<&P>, ) -> Pin<Box<dyn Future<Output = Result<(), Error>>>>
Object Safety§
This trait is not object safe.