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

Required Methods§

source

fn hostname(&self) -> GString

source

fn port(&self) -> u16

source

fn scheme(&self) -> Option<GString>

Implementors§