Trait extra::hex::FromHex

pub trait FromHex {
    fn from_hex(&self) -> std::result::Result;
}

A trait for converting hexadecimal encoded values

Required Methods

fn from_hex(&self) -> std::result::Result

Converts the value of self, interpreted as hexadecimal encoded data, into an owned vector of bytes, returning the vector.

Implementors