pub trait SocketAddressExt: 'static {
    fn get_family(&self) -> SocketFamily;
    fn get_native_size(&self) -> isize;
    fn connect_property_family_notify<F: Fn(&Self) + Send + Sync + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors