Trait gio::NetworkServiceExt [−][src]
pub trait NetworkServiceExt {
fn get_domain(&self) -> Option<String>;
fn get_protocol(&self) -> Option<String>;
fn get_scheme(&self) -> Option<String>;
fn get_service(&self) -> Option<String>;
fn set_scheme(&self, scheme: &str);
fn connect_property_domain_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_protocol_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_scheme_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_service_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}Required Methods
fn get_domain(&self) -> Option<String>
fn get_protocol(&self) -> Option<String>
fn get_scheme(&self) -> Option<String>
fn get_service(&self) -> Option<String>
fn set_scheme(&self, scheme: &str)
fn connect_property_domain_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_protocol_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_scheme_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_service_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
Implementors
impl<O: IsA<NetworkService> + IsA<Object>> NetworkServiceExt for O