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§
sourcefn print_named(&self, name: &str)
fn print_named(&self, name: &str)
Pretty print the transaction results, tagged with the given name for distinguishability.