8 releases
Uses old Rust 2015
0.2.1 | Jul 3, 2018 |
---|---|
0.2.0 | Apr 21, 2018 |
0.1.2 | Sep 10, 2016 |
0.0.3 | Apr 20, 2016 |
0.0.1 | Nov 26, 2014 |
#1199 in Text processing
211 downloads per month
Used in 3 crates
8KB
212 lines
fmt-extra
Extra formatters (impliment fmt::Display and fmt::Debug) as wrapper types.
- AsciiStr: print a [u8]-like as a string of ascii characters with non-visible characters escaped with the rust & c-style "\xFF"
- Hs: print a [u8]-like as the hex digits without any seperators: "AF13"...
- SingleQuotedStr: print a
&str
with posix shell style single quote escaping - Seperated: print an
Iterator<T: Display>
with a single Display-able seperator between each item.