io_uring_opcode/traits/
connect.rs

1//! Connect extension trait
2
3use ysockaddr::YSockAddrC;
4
5/// Connect Expansion trait
6pub trait OpExtConnect {
7    /// Underlying Fixed Fd ref
8    fn fixed_fd(&self) -> u32;
9    /// Underlying YSockAddr
10    fn ysaddr(&self) -> &YSockAddrC;
11}