2 releases

Uses old Rust 2015

0.1.1 Sep 29, 2017
0.1.0 Sep 29, 2017

#220 in Value formatting

Download history 40063/week @ 2024-07-28 25290/week @ 2024-08-04 48806/week @ 2024-08-11 46796/week @ 2024-08-18 19305/week @ 2024-08-25 23280/week @ 2024-09-01 24099/week @ 2024-09-08 30246/week @ 2024-09-15 28405/week @ 2024-09-22 31152/week @ 2024-09-29 31324/week @ 2024-10-06 22759/week @ 2024-10-13 30307/week @ 2024-10-20 34474/week @ 2024-10-27 39298/week @ 2024-11-03 26001/week @ 2024-11-10

131,763 downloads per month
Used in 8 crates (3 directly)

Apache-2.0

8KB
145 lines

extfmt

A crate with additional formatting options for Rust types

Usage

Add the dependency to your Cargo.toml:

[dependencies]
extfmt = "0.1"
extern crate extfmt;

use extfmt::*;

fn main() {
	// Wrapper types for prettier printing of slices.
	//
	// The string is formatted in a "slice" form, and supports most 
	// format specifiers as long as the underlying type implements them
	//
	// This prints "[01, 02, ff, 40]"
	println!("{:02x}", CommaSeparated(&[1, 2, 255, 64]));

	// Compact formatting of byte slices:
	// This prints "0102ff40".
	println!("{}", Hexlify(&[1, 2, 255, 64]));

	// Pretty buffer printing using `hexdump`.
	println!("{}", hexdump!(&[1u8, 2, 255, 64]));
	// 	 => 00000000	01 02 ff 40

	// Hexdump can also be used as a memory view for Sized types.
	println!("{}", hexdump!(64));
	//   => 00000000	40 00 00 00

	// Further hexdump options
	println!("{}", hexdump!(64, show_index: false));
	//   => 40 00 00 00
}

lib.rs:

A crate with extended formatting options for ceratin types.

No runtime deps