Trait poc_framework::PrintableTransaction[][src]

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.

Implementations on Foreign Types

Implementors