pub trait SetSockOpt: Clone {
type Val;
// Required method
fn set(&self, fd: RawFd, val: &Self::Val) -> Result<()>;
}
Expand description
Represents a socket option that can be set.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.