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
//! EpollCtl extension trait

/// EpollCtl Expansion trait
pub trait OpExtEpollCtl {
    /// Underlying RawFd
    fn raw_fd(&self) -> std::os::fd::RawFd;
    /// Underlying libc::eooll_event
    fn ev(&self) -> &libc::epoll_event;
}