core3 0.1.2

The bare essentials of std::io for use in no_std. Drop-in successor to core2. core2 alternative with some additional utils.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) core2 contributors
// SPDX-License-Identifier: Apache-2.0 OR MIT

mod cursor;
mod error;
mod impls;
mod traits;
#[cfg(feature = "utils")]
mod util;

pub use cursor::Cursor;
pub use error::{Error, ErrorKind, Result};
#[allow(deprecated)]
pub use traits::Initializer;
pub use traits::{BufRead, Bytes, Chain, Read, Seek, SeekFrom, Take, Write};
#[cfg(feature = "utils")]
pub use util::{copy, empty, repeat, sink, Empty, Repeat, Sink};