mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
15 lines
375 B
Rust
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
|
|
}
|
|
}
|