Trait sourceview5::prelude::ProxyExt
source · pub trait ProxyExt: IsA<Proxy> + Sealed + 'static {
// Provided methods
fn connect(
&self,
connection: &impl IsA<IOStream>,
proxy_address: &impl IsA<ProxyAddress>,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<IOStream, Error> { ... }
fn connect_async<P>(
&self,
connection: &impl IsA<IOStream>,
proxy_address: &impl IsA<ProxyAddress>,
cancellable: Option<&impl IsA<Cancellable>>,
callback: P,
)
where P: FnOnce(Result<IOStream, Error>) + 'static { ... }
fn connect_future(
&self,
connection: &(impl IsA<IOStream> + Clone + 'static),
proxy_address: &(impl IsA<ProxyAddress> + Clone + 'static),
) -> Pin<Box<dyn Future<Output = Result<IOStream, Error>>>> { ... }
fn supports_hostname(&self) -> bool { ... }
}
Provided Methods§
fn connect( &self, connection: &impl IsA<IOStream>, proxy_address: &impl IsA<ProxyAddress>, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<IOStream, Error>
fn connect_async<P>( &self, connection: &impl IsA<IOStream>, proxy_address: &impl IsA<ProxyAddress>, cancellable: Option<&impl IsA<Cancellable>>, callback: P, )
fn connect_future( &self, connection: &(impl IsA<IOStream> + Clone + 'static), proxy_address: &(impl IsA<ProxyAddress> + Clone + 'static), ) -> Pin<Box<dyn Future<Output = Result<IOStream, Error>>>>
fn supports_hostname(&self) -> bool
Object Safety§
This trait is not object safe.