Encode a value as a hex string. Implementors of this trait should not write the `0x` prefix. */
| 225 | Implementors of this trait should not write the `0x` prefix. |
| 226 | */ |
| 227 | pub trait WriteHex { |
| 228 | /// Write the value as hex. |
| 229 | fn write_hex<W: fmt::Write>(&self, writer: W) -> fmt::Result; |
| 230 | } |
| 231 | |
| 232 | /** |
| 233 | Parse a value from a hex string. |
nothing calls this directly
no outgoing calls
no test coverage detected