[][src]Function hex_string::nibble_to_hexchar

pub fn nibble_to_hexchar(b: &u8) -> Result<char, HexStringError>

Given a nibble (a u8 value in the range 0-15), convert it to its corresponding character representation.

This will raise InvalidNibble if the value provided is outside the range 0-15.