Trait nix::sys::socket::SetSockOpt

source ·
pub trait SetSockOpt: Clone {
    type Val;

    // Required method
    fn set<F: AsFd>(&self, fd: &F, val: &Self::Val) -> Result<()>;
}
Available on crate feature socket only.
Expand description

Represents a socket option that can be set.

Required Associated Types§

Required Methods§

source

fn set<F: AsFd>(&self, fd: &F, val: &Self::Val) -> Result<()>

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

Object Safety§

This trait is not object safe.

Implementors§