Trait bank::Bank [] [src]

pub trait Bank {
    fn get_name() -> &'static str;
fn read_transaction_file<R: Read + 'static>(
        reader: BufReader<R>
    ) -> Result<Box<Transactions<R>>>;
fn recognise_transaction_file<R: Read + 'static>(
        reader: &mut BufReader<R>
    ) -> bool; }

Required Methods

Implementors