pub trait FromHex<'a>: Sized {
    fn from_hex(s: &'a str) -> Result<Self, Error>;
}
Expand description

Trait for objects that can be deserialized from hex strings

Required Methods

Produce an object from a hex string

Implementations on Foreign Types

Implementors