Trait gio::prelude::SocketAddressExt [−][src]
pub trait SocketAddressExt: 'static {
fn family(&self) -> SocketFamily;
fn native_size(&self) -> isize;
fn connect_family_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId;
}Expand description
Trait containing all SocketAddress methods.
Implementors
Required methods
fn family(&self) -> SocketFamily
fn family(&self) -> SocketFamilyfn native_size(&self) -> isize
fn native_size(&self) -> isizeGets the size of self’s native struct sockaddr.
You can use this to allocate memory to pass to
g_socket_address_to_native().
Returns
the size of the native struct sockaddr that
self represents
fn connect_family_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F
) -> SignalHandlerId