switchy_async 0.2.0

Switchy Async runtime package
Documentation
1
2
3
4
5
6
7
8
//! I/O utilities for the simulator runtime.
//!
//! This module re-exports Tokio's async I/O traits and utilities. The simulator uses the same
//! I/O primitives as Tokio for compatibility.

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