mio-aio 2.0.0

POSIX AIO bindings for mio
Documentation
//! MIO bindings for POSIX AIO
//!
//! # Feature Flags
//!
//! * `tokio` - Add extra methods needed for consumers to implement Tokio's
//!             `AioSource` trait.
//!
//! # See Also
//!
//! * [`tokio-file`](https://docs.rs/tokio-file) - Tokio bindings that work atop
//!   this crate.  Much more useful to the typical user.
#![deny(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg))]
// This lint is unhelpful.  See
// https://github.com/rust-lang/rust-clippy/discussions/14256
#![allow(clippy::doc_overindented_list_items)]

mod aio;

pub use aio::{
    AioFsyncMode,
    Fsync,
    ReadAt,
    ReadvAt,
    Source,
    SourceApi,
    WriteAt,
    WritevAt,
};
pub use nix::errno::Errno;