Trait evmil::util::FromHexString

source ·
pub trait FromHexString {
    type Error;

    fn from_hex_string(&self) -> Result<Vec<u8>, Self::Error>;
}
Expand description

A simple trait allowing something to be converted from a hex string.

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

A default implementation for string slices

Implementors§