Crate string_reader

Source
Expand description

Readers for &strs and Strings instead of u8s.

See RealStrRead and StringRead as the traits, and StrReader and StringReader as the structs.

Structs§

StrReader
StringReader
An equivalent of std::io::BufReader but for String instead of char.

Traits§

RealStrRead
Represent anything that pops out &str.
StrRead
The base trait that both RealStrRead and StringRead need to implement.
StrWrite
Write/insert operations with &str-type readers.
StringRead
Represent anything that pops out String.
StringWrite
Write/insert operations with String-type readers.