pub trait NetworkServiceExt: 'static {
    fn get_domain(&self) -> Option<GString>;
    fn get_protocol(&self) -> Option<GString>;
    fn get_scheme(&self) -> Option<GString>;
    fn get_service(&self) -> Option<GString>;
    fn set_scheme(&self, scheme: &str);
    fn connect_property_scheme_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors