[−][src]Trait rustc_serialize::hex::ToHex
A trait for converting a value to hexadecimal encoding
Required Methods
Implementations on Foreign Types
impl ToHex for [u8]
[src]
impl ToHex for [u8]
fn to_hex(&self) -> String
[src]
fn to_hex(&self) -> String
Turn a vector of u8
bytes into a hexadecimal string.
Example
extern crate rustc_serialize; use rustc_serialize::hex::ToHex; fn main () { let str = [52,32].to_hex(); println!("{}", str); }
impl<'a, T: ?Sized + ToHex> ToHex for &'a T
[src]
impl<'a, T: ?Sized + ToHex> ToHex for &'a T