pub trait ProxyResolverExt: 'static {
    fn is_supported(&self) -> bool;
    fn lookup<P: IsA<Cancellable>>(
        &self,
        uri: &str,
        cancellable: Option<&P>
    ) -> Result<Vec<GString>, Error>; fn lookup_async<P: IsA<Cancellable>, Q: FnOnce(Result<Vec<GString>, Error>) + Send + 'static>(
        &self,
        uri: &str,
        cancellable: Option<&P>,
        callback: Q
    ); }

Required Methods

Implementors