pub trait ProxyAddressExt: 'static {
    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>;
}

Required methods

Implementors