pub trait SetSockOpt: Clone {
type Val: ?Sized;
// Required method
fn set<F: AsFd>(&self, fd: &F, 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".