Expand description
This crate provides functions to create human readable hex dumps of binary data.
Functionsยง
- bare_
dump - Create a simple hex dump of the given data. The dump contains pairs of hex digits, separated by spaces, no line breaks, decorations, etc.
- bare_
dump_ string - Create a simple hex dump of the given data. The dump contains pairs of hex digits, separated by spaces, no line breaks, decorations, etc.
- formatted_
dump - Create a formatted multi-line hex dump of the given data. Dump lines are prefixed with the given offset. Each line contains up to 16 bytes, separated by spaces, followed by a space and the ASCII representation.
- formatted_
dump_ string - Create a formatted multi-line hex dump of the given data. Dump lines are prefixed with the given offset. Each line contains up to 16 bytes, separated by spaces, followed by a space and the ASCII representation.
- write_
bare_ dump_ to_ vec - Write a simple hex dump of the given data to the given target. The dump contains pairs of hex digits, separated by spaces, no line breaks, decorations, etc.
- write_
formatted_ dump_ to_ vec - Write a formatted multi-line hex dump of the given data to the given target. Dump lines are prefixed with the given offset. Each line contains up to 16 bytes, separated by spaces, followed by a space and the ASCII representation.