Crate string_reader
source ·Expand description
Readers for &str
s and String
s instead of u8
s.
See RealStrRead
and StringRead
as the traits, and StrReader
and StringReader
as
the structs.
Structs§
- An equivalent of
std::io::BufReader
but forString
instead ofchar
.
Traits§
- Represent anything that pops out
&str
. - The base trait that both
RealStrRead
andStringRead
need to implement. - Write/insert operations with
&str
-type readers. - Represent anything that pops out
String
. - Write/insert operations with
String
-type readers.