pub trait PrintableTransaction {
    fn print_named(&self, name: &str);

    fn print(&self) { ... }
}
Expand description

Utility trait for printing transaction results.

Required Methods

Pretty print the transaction results, tagged with the given name for distinguishability.

Provided Methods

Pretty print the transaction results.

Implementors