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

pub trait SetSockOpt: Clone {
    type Val;
    fn set(&self, fd: RawFd, val: &Self::Val) -> Result<()>;
}
Expand description

Represents a socket option that can be set.

Associated Types

Required methods

Set the value of this socket option on the given socket.

Implementors