Expand description
Encoding and decoding hexidecimal strings.
See crate ::hex
.
Modules§
- Hex encoding with
serde
.
Enums§
- The error type for decoding a hex string into
Vec<u8>
or[u8; N]
.
Traits§
- Types that can be decoded from a hex string.
- Encoding values as hex string.
Functions§
- Decodes a hex string into raw bytes.
- Decode a hex string into a mutable bytes slice.
- Deserializes a hex string into raw bytes.
- Encodes
data
as hex string using lowercase characters. - Encodes some bytes into a mutable slice of bytes.
- Encodes
data
as hex string using uppercase characters. - Serializes
data
as hex string using lowercase characters. - Serializes
data
as hex string using uppercase characters.