pub trait UnixSocketAddressExt: 'static {
    fn get_address_type(&self) -> UnixSocketAddressType;
    fn get_is_abstract(&self) -> bool;
    fn get_path_len(&self) -> usize;
    fn get_property_abstract(&self) -> bool;
}

Required Methods

Implementors