5 releases

Uses old Rust 2015

0.1.4 Mar 2, 2018
0.1.3 Mar 2, 2018
0.1.2 Oct 23, 2017
0.1.1 Oct 23, 2017
0.1.0 May 3, 2016

#1214 in Rust patterns

Download history 993/week @ 2024-01-01 1475/week @ 2024-01-08 1487/week @ 2024-01-15 2279/week @ 2024-01-22 2095/week @ 2024-01-29 1821/week @ 2024-02-05 1811/week @ 2024-02-12 2163/week @ 2024-02-19 2179/week @ 2024-02-26 2161/week @ 2024-03-04 1489/week @ 2024-03-11 1368/week @ 2024-03-18 1518/week @ 2024-03-25 1677/week @ 2024-04-01 1774/week @ 2024-04-08 1881/week @ 2024-04-15

6,947 downloads per month
Used in 44 crates (16 directly)

MIT license

5KB
63 lines

hex-slice

Build Status

Renders a slice of integers (or anything else that supports the LowerHex or UpperHex traits) as hex. For example, this:

extern crate hex_slice;
use hex_slice::AsHex;

fn main() {
    let foo = vec![0u32, 1 ,2 ,3];
    println!("{:x}", foo.as_hex());
}

Displays: [0 1 2 3] on standard output (available with cargo run --example trivial).


lib.rs:

The purpose of this crate is to extend the UpperHex and LowerHex traits to slices, as well as the integers it is currently implemented for.

Examples

extern crate hex_slice;
use hex_slice::AsHex;

fn main() {
    let foo = vec![0u32, 1 ,2 ,3];
    println!("{:x}", foo.as_hex());
}

No runtime deps