pub trait CryptoAddress {
    // Required method
    fn public_address(&self) -> String;
}
Expand description

CryptoAddress is a trait that defines the public address of a crypto currency

Required Methods§

source

fn public_address(&self) -> String

Returns the public address as a string

Implementations on Foreign Types§

source§

impl CryptoAddress for BitcoinAddress

Implementors§