parsenic 0.2.0

A simple no-std/no-alloc I/O and parsing crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! __*`unstable-io`*__ feature required; I/O primitives (MSRV 1.84)

mod destination;
mod receiver;
mod seek;
mod sender;
mod source;
mod truncate;

pub use self::{
    destination::Destination, receiver::Receiver, seek::Seek, sender::Sender,
    source::Source, truncate::Truncate,
};