pub trait TryFromHexwhere
    Self: Sized,
{ fn try_from_hex<H>(hex: H) -> Result<Self>
    where
        H: AsRef<str>
; }
Expand description

Simple and safe T/AsRef<str> conversions that may fail in a controlled way under some circumstances.

Required Methods§

Try to convert the Self from hex.

Implementations on Foreign Types§

Implementors§