Trait ProxyAddressExt

Source
pub trait ProxyAddressExt: IsA<ProxyAddress> + 'static {
    // Provided methods
    fn destination_hostname(&self) -> GString { ... }
    fn destination_port(&self) -> u16 { ... }
    fn destination_protocol(&self) -> GString { ... }
    fn password(&self) -> Option<GString> { ... }
    fn protocol(&self) -> GString { ... }
    fn uri(&self) -> Option<GString> { ... }
    fn username(&self) -> Option<GString> { ... }
}

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<O> ProxyAddressExt for O
where O: IsA<ProxyAddress>,