[−][src]Trait rustc_ap_rustc_data_structures::ToHex
A trait for converting a value to hexadecimal encoding
Required methods
Loading content...Implementations on Foreign Types
impl ToHex for [u8]
[src]
fn to_hex(&self) -> String
[src]
Turn a vector of u8
bytes into a hexadecimal string.
Examples
#![feature(rustc_private)] extern crate serialize; use serialize::hex::ToHex; fn main () { let str = [52,32].to_hex(); println!("{}", str); }