pub trait AsyncRecvFd {
// Required method
fn recv_fd(&self) -> impl Future<Output = Result<RawFd, Error>> + Send;
}
Expand description
A trait to receive raw file descriptors
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.