pub trait NetworkServiceExt: 'static {
    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

Implementors