Trait rustc_data_structures::ToHex[][src]

pub trait ToHex {
    fn to_hex(&self) -> String;
}

A trait for converting a value to hexadecimal encoding

Required Methods

Converts the value of self to a hex value, returning the owned string.

Implementations on Foreign Types

impl ToHex for [u8]
[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);
}

Implementors