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

Required methods

Implementors