Trait gio::NetworkAddressExt [−][src]
pub trait NetworkAddressExt {
fn get_hostname(&self) -> Option<String>;
fn get_port(&self) -> u16;
fn get_scheme(&self) -> Option<String>;
fn connect_property_hostname_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_port_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_scheme_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}Required Methods
fn get_hostname(&self) -> Option<String>
fn get_port(&self) -> u16
fn get_scheme(&self) -> Option<String>
fn connect_property_hostname_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_port_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
Implementors
impl<O: IsA<NetworkAddress> + IsA<Object>> NetworkAddressExt for O