Trait nom::HexDisplay [] [src]

pub trait HexDisplay {
    fn to_hex(&self, chunk_size: usize) -> String;
fn to_hex_from(&self, chunk_size: usize, from: usize) -> String; }

Required Methods

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

Converts the value of self to a hex dump beginning at from address, returning the owned string.

Implementors