pub trait TryFromHexwhere
    Self: Sized,
{ fn try_from_hex(hex: &str) -> ArrayBytesResult<Self>; }
Expand description

Simple and safe T/Hex conversions that may fail in a controlled way under some circumstances.

Required Methods

Implementations on Foreign Types

Implementors