Module io

Module io 

Source
Expand description

Custom I/O traits that roughly mirror std::io::{Read, BufRead, Write}. This extra layer of indirection enables support of no-std environments.

Traitsยง

BufRead
A rough approximation of std::io::BufRead.
Read
A rough approximation of std::io::Read.
Write
A rough approximation of std::io::Write.