A trait for converting a value to hexadecimal encoding
Converts the value of self
to a hex value, returning the owned
string.
Loading content...
Turn a vector of u8
bytes into a hexadecimal string.
#![feature(rustc_private)]
extern crate serialize;
use serialize::hex::ToHex;
fn main () {
let str = [52,32].to_hex();
println!("{}", str);
}
Run
Loading content...
Loading content...