switchy_async 0.2.0

Switchy Async runtime package
Documentation
1
2
3
4
5
6
7
//! I/O utilities for the Tokio runtime.
//!
//! This module re-exports Tokio's async I/O traits and utilities for reading, writing, and seeking.

#[cfg(feature = "io")]
pub use tokio::io::{AsyncBufReadExt, AsyncReadExt, AsyncSeekExt, AsyncWriteExt, BufReader};
pub use tokio::io::{AsyncRead, AsyncSeek, AsyncWrite, ReadBuf};