pub trait TransactionTypeExtension {
    // Required methods
    fn style(&self, s: &str) -> String;
    fn style_with_sign(&self, s: &str, history: bool) -> String;
}

Required Methods§

source

fn style(&self, s: &str) -> String

source

fn style_with_sign(&self, s: &str, history: bool) -> String

Implementations on Foreign Types§

source§

impl TransactionTypeExtension for TransactionKind

source§

fn style(&self, s: &str) -> String

source§

fn style_with_sign(&self, s: &str, history: bool) -> String

Implementors§