pub trait GetSockOpt: Copy {
    type Val;

    fn get(&self, fd: i32) -> Result<Self::Val, Errno>;
}
Expand description

Represents a socket option that can be retrieved.

Required Associated Types

Required Methods

Look up the value of this socket option on the given socket.

Implementors