Trait gio::InetAddressMaskExt[][src]

pub trait InetAddressMaskExt {
    fn get_address(&self) -> InetAddress;
fn get_family(&self) -> SocketFamily;
fn get_length(&self) -> u32;
fn matches(&self, address: &InetAddress) -> bool;
fn to_string(&self) -> String;
fn set_property_address(&self, address: Option<&InetAddress>);
fn set_property_length(&self, length: u32);
fn connect_property_address_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_family_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_length_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors