Trait nix::sys::socket::GetSockOpt[][src]

pub trait GetSockOpt: Copy {
    type Val;
    fn get(&self, fd: RawFd) -> Result<Self::Val>;
}
Expand description

Represents a socket option that can be retrieved.

Associated Types

Required methods

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

Implementors