pub trait SocketMap {
    fn fd_or_err(&self) -> Result<RawFd, MapError>;
}
Expand description

Shared behaviour between SockHash and SockMap

Required methods

Returns a Result containg the map fd or an error if there is none

Implementors