Trait sourceview5::prelude::ProxyResolverExt

source ·
pub trait ProxyResolverExt: IsA<ProxyResolver> + Sealed + 'static {
    // Provided methods
    fn is_supported(&self) -> bool { ... }
    fn lookup(
        &self,
        uri: &str,
        cancellable: Option<&impl IsA<Cancellable>>,
    ) -> Result<Vec<GString>, Error> { ... }
    fn lookup_async<P>(
        &self,
        uri: &str,
        cancellable: Option<&impl IsA<Cancellable>>,
        callback: P,
    )
       where P: FnOnce(Result<Vec<GString>, Error>) + 'static { ... }
    fn lookup_future(
        &self,
        uri: &str,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<GString>, Error>>>> { ... }
}

Provided Methods§

source

fn is_supported(&self) -> bool

source

fn lookup( &self, uri: &str, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<Vec<GString>, Error>

source

fn lookup_async<P>( &self, uri: &str, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
where P: FnOnce(Result<Vec<GString>, Error>) + 'static,

source

fn lookup_future( &self, uri: &str, ) -> Pin<Box<dyn Future<Output = Result<Vec<GString>, Error>>>>

Object Safety§

This trait is not object safe.

Implementors§