pub trait FromHexPrefixed: Sized {
    fn from_hex_prefixed(hex: &str) -> Result<Self, Error>;
}
Expand description

Tries to decode an hexadecimal encoded string with a 0x prefix.

Required Methods

Tries to decode an hexadecimal encoded string with a 0x prefix.

Implementations on Foreign Types

Implementors