string-reader 0.1.1

Readers for &str and String instead of [u8].
Documentation
  • Coverage
  • 75%
    18 out of 24 items documented4 out of 19 items with examples
  • Size
  • Source code size: 13.6 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.19 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • FyraLabs/string-reader
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • madonuko

string-reader

string-reader is a crate that provides traits and structs for making readers take in and output &str and String instead of [u8].

Traits

StrRead

The base trait that both &str-like and String-like readers implement.

RealStrRead

The trait that &str-like readable structs implement.

StringRead

The trait that String-like readable structs implement.

StrWrite

&str-like writable structs implement this.

StringWrite

String-like writable structs implement this.

Structs

StrReader

A read and write reader that takes in and outputs &strs.

StringReader

A read and write reader that takes in and outputs Strings.