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

    // Provided method
    fn print(&self) { ... }
}
Expand description

Utility trait for printing transaction results.

Required Methods§

source

fn print_named(&self, name: &str)

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

Provided Methods§

source

fn print(&self)

Pretty print the transaction results.

Implementors§