ntex/ntex-neon/src/driver/unix/mod.rs
2025-03-10 12:06:13 +05:00

15 lines
375 B
Rust

//! This mod doesn't actually contain any driver, but meant to provide some
//! common op type and utilities for unix platform (for iour and polling).
pub(crate) mod op;
use crate::driver::RawFd;
/// The overlapped struct for unix needn't contain extra fields.
pub(crate) struct Overlapped;
impl Overlapped {
pub fn new(_driver: RawFd) -> Self {
Self
}
}