pub trait NetworkAddressExt: 'static {
    fn hostname(&self) -> GString;
    fn port(&self) -> u16;
    fn scheme(&self) -> Option<GString>;
}

Required methods

Implementors