Trait ux::prelude::InetAddressExt[]

pub trait InetAddressExt: 'static {
Show methods pub fn equal<P>(&self, other_address: &P) -> bool
    where
        P: IsA<InetAddress>
;
pub fn get_family(&self) -> SocketFamily;
pub fn get_is_any(&self) -> bool;
pub fn get_is_link_local(&self) -> bool;
pub fn get_is_loopback(&self) -> bool;
pub fn get_is_mc_global(&self) -> bool;
pub fn get_is_mc_link_local(&self) -> bool;
pub fn get_is_mc_node_local(&self) -> bool;
pub fn get_is_mc_org_local(&self) -> bool;
pub fn get_is_mc_site_local(&self) -> bool;
pub fn get_is_multicast(&self) -> bool;
pub fn get_is_site_local(&self) -> bool;
pub fn get_native_size(&self) -> usize;
pub fn to_string(&self) -> GString;
pub fn connect_property_is_any_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self) + Send + Sync
;
pub fn connect_property_is_link_local_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self) + Send + Sync
;
pub fn connect_property_is_loopback_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self) + Send + Sync
;
pub fn connect_property_is_mc_global_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self) + Send + Sync
;
pub fn connect_property_is_mc_link_local_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self) + Send + Sync
;
pub fn connect_property_is_mc_node_local_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self) + Send + Sync
;
pub fn connect_property_is_mc_org_local_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self) + Send + Sync
;
pub fn connect_property_is_mc_site_local_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self) + Send + Sync
;
pub fn connect_property_is_multicast_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self) + Send + Sync
;
pub fn connect_property_is_site_local_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self) + Send + Sync
;
}

Required methods

pub fn equal<P>(&self, other_address: &P) -> bool where
    P: IsA<InetAddress>, 

pub fn get_family(&self) -> SocketFamily

pub fn get_is_any(&self) -> bool

pub fn get_is_loopback(&self) -> bool

pub fn get_is_mc_global(&self) -> bool

pub fn get_is_mc_node_local(&self) -> bool

pub fn get_is_mc_org_local(&self) -> bool

pub fn get_is_mc_site_local(&self) -> bool

pub fn get_is_multicast(&self) -> bool

pub fn get_is_site_local(&self) -> bool

pub fn get_native_size(&self) -> usize

pub fn to_string(&self) -> GString

pub fn connect_property_is_any_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self) + Send + Sync

pub fn connect_property_is_loopback_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self) + Send + Sync

pub fn connect_property_is_mc_global_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self) + Send + Sync

pub fn connect_property_is_mc_node_local_notify<F>(
    &self,
    f: F
) -> SignalHandlerId where
    F: 'static + Fn(&Self) + Send + Sync

pub fn connect_property_is_mc_org_local_notify<F>(
    &self,
    f: F
) -> SignalHandlerId where
    F: 'static + Fn(&Self) + Send + Sync

pub fn connect_property_is_mc_site_local_notify<F>(
    &self,
    f: F
) -> SignalHandlerId where
    F: 'static + Fn(&Self) + Send + Sync

pub fn connect_property_is_multicast_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self) + Send + Sync

pub fn connect_property_is_site_local_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self) + Send + Sync

Loading content...

Implementors

impl<O> InetAddressExt for O where
    O: IsA<InetAddress>, 

Loading content...