Trait serialize::hex::FromHex [] [src]

pub trait FromHex {
    fn from_hex(&self) -> Result<Vec<u8>, FromHexError>;
}
🔬 This is a nightly-only experimental API. (rustc_private)

deprecated in favor of rustc-serialize on crates.io

A trait for converting hexadecimal encoded values

Required Methods

🔬 This is a nightly-only experimental API. (rustc_private)

deprecated in favor of rustc-serialize on crates.io

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

Implementors