pub trait GetSockOpt: Copy {
type Val;
// Required method
fn get(&self, fd: i32) -> Result<Self::Val, Errno>;
}Expand description
Represents a socket option that can be retrieved.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".