1//! EpollCtl extension trait 2 3/// EpollCtl Expansion trait 4pub trait OpExtEpollCtl { 5 /// Underlying RawFd 6 fn raw_fd(&self) -> std::os::fd::RawFd; 7 /// Underlying libc::eooll_event 8 fn ev(&self) -> &libc::epoll_event; 9}