Trait nom::HexDisplay

source ·
pub trait HexDisplay {
    fn to_hex(&self, chunk_size: usize) -> String;
    fn to_hex_from(&self, chunk_size: usize, from: usize) -> String;
}
Available on crate feature std only.
Expand description

Helper trait to show a byte slice as a hex dump

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.

Implementations on Foreign Types§

Available on crate feature std only.
Available on crate feature std only.
Available on crate feature std only.
Available on crate feature std only.

Implementors§