EscrowCreator

Trait EscrowCreator 

Source
pub trait EscrowCreator {
    type EscrowDatabaseType: EscrowDatabase;

    // Required method
    fn create_escrow_db(
        &self,
        table_name: &'static str,
    ) -> Self::EscrowDatabaseType;
}

Required Associated Types§

Required Methods§

Source

fn create_escrow_db(&self, table_name: &'static str) -> Self::EscrowDatabaseType

Implementors§