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;
}
Expand description

Trait containing all NetworkService methods.

Implementors

NetworkService

Required Methods§

source

fn domain(&self) -> GString

Gets the domain that self serves. This might be either UTF-8 or ASCII-encoded, depending on what self was created with.

Returns

self’s domain name

source

fn protocol(&self) -> GString

Gets self’s protocol name (eg, “tcp”).

Returns

self’s protocol name

source

fn scheme(&self) -> GString

Gets the URI scheme used to resolve proxies. By default, the service name is used as scheme.

Returns

self’s scheme name

source

fn service(&self) -> GString

Gets self’s service name (eg, “ldap”).

Returns

self’s service name

source

fn set_scheme(&self, scheme: &str)

Set’s the URI scheme used to resolve proxies. By default, the service name is used as scheme.

scheme

a URI scheme

source

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

Implementors§