bytesbuf_io 0.5.4

Asynchronous I/O abstractions expressed via `bytesbuf` types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Utilities for testing code that uses `bytesbuf_io` abstractions.

mod fake_read;
mod fake_write;
mod null;
mod pending;

pub use fake_read::*;
pub use fake_write::*;
pub use null::*;
pub use pending::*;