pub trait NetworkServiceExt: 'static {
    // Required methods
    fn domain(&self) -> GString;
    fn protocol(&self) -> GString;
    fn scheme(&self) -> GString;
    fn service(&self) -> GString;
    fn set_scheme(&self, scheme: &str);
    fn connect_scheme_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn domain(&self) -> GString

source

fn protocol(&self) -> GString

source

fn scheme(&self) -> GString

source

fn service(&self) -> GString

source

fn set_scheme(&self, scheme: &str)

source

fn connect_scheme_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Implementors§