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
- String
Reader - An equivalent of
std::io::BufReaderbut forStringinstead ofchar.
Traits§
- Real
StrRead - Represent anything that pops out
&str. - StrRead
- The base trait that both
RealStrReadandStringReadneed to implement. - StrWrite
- Write/insert operations with
&str-type readers. - String
Read - Represent anything that pops out
String. - String
Write - Write/insert operations with
String-type readers.