Easy Hex

An easy to use Hex-String formatting wrapper.

The goal of this library is to make it very easy to format or serialize any container of bytes as a hexadecimal string. This includes vectors, arrays, slices, etc. Example:

```rust use easy_hex::Hex;

let hex = Hex([1, 16, 255]); let json = serdejson::tostring(&hex).unwrap(); assert_eq!(json, r#""0110ff""#); ```

Features

Supported Types

The API of this crate aims to support as many types as possible:

This covers, among other things, these types:

Note the explicit support of dynamically sized types like [u8]. They are possible because of the transparent representation:

```rust use easy_hex::Hex;

let data: &[u8] = &[1, 2, 3]; let hex: &Hex<[u8]> = data.into(); ```

Relevancy

There are many hex string formatting crates already, and this one does not aim to be better than any of them.

The main reason this exists is that the author wanted a reusable crate for hex string serialization with minimal boilerplate.

Performance

No particular performance benchmarks or optimizations have been applied to this crate so far. The properties of the implementation are:

More Examples

Serializing byte vectors as hex strings:

```rust use easyhex::Hex; use serdederive::{Serialize, Deserialize};

[derive(Serialize, Deserialize)]

struct Example { // With wrapper array: Hex<[u8; 16]>, // Without wrapper #[serde(with = "easy_hex::serde")] vec: Vec }

```

Formatting bytes as hex:

```rust use easy_hex::{Hex, HexExt};

let data: [u8; 4] = [222, 173, 190, 239];

// Format by creating a temporary &Hex<[u8; N]> let out = format!("contents of data: {}", data.ashex()); asserteq!(out, "contents of data: deadbeef");

// Format by wrapping the data explicitly let hex = Hex(data); println!("display: {hex}"); println!("debug: {hex:?}"); println!("explicit lower: {hex:x}"); println!("explicit upper: {hex:X}"); ```