Expand description
Agnostic I/O
§Introduction
agnostic-io
defines I/O traits in Sans-I/O style for any async runtime.
§Installation
[dependencies]
agnostic-io = "0.1"
-
tokio::io
compatagnostic-io = { version = "0.1", features = ["tokio"] }
§License
agnostic-io
is under the terms of both the MIT license and the
Apache License (Version 2.0).
See LICENSE-APACHE, LICENSE-MIT for details.
Copyright (c) 2025 Al Liu.
Modules§
- futures_
io - Asynchronous I/O.
Structs§
Enums§
- Error
Kind - A list specifying general categories of I/O error.
Traits§
- Async
Read - Marker trait for types that implement
AsyncRead
. - Async
Read Write - Marker trait for types that implement
AsyncRead
andAsyncWrite
. - Async
Write - Marker trait for types that implement
AsyncWrite
.