Trait ethcore_bytes::ToPretty [] [src]

pub trait ToPretty {
    fn pretty(&self) -> PrettySlice;

    fn to_hex(&self) -> String { ... }
}

Trait to allow a type to be pretty-printed in format!, where unoverridable defaults cannot otherwise be avoided.

Required Methods

Convert a type into a derivative form in order to make format! print it prettily.

Provided Methods

Express the object as a hex string.

Implementors