io-uring-opcode 0.2.0-pre3

io_uring opcode trait contract between bearer and opcodes
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Connect extension trait

use ysockaddr::YSockAddrC;

/// Connect Expansion trait
pub trait OpExtConnect {
    /// Underlying Fixed Fd ref
    fn fixed_fd(&self) -> u32;
    /// Underlying YSockAddr
    fn ysaddr(&self) -> &YSockAddrC;
}