rostrum 14.0.1

An efficient implementation of Electrum Server with token support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::store::Row;

pub mod headerindex;
pub mod heightindex;
pub mod inputindex;
pub mod outputindex;
pub mod outputtokenindex;
pub mod outtoscriptindex;
pub mod scripthashindex;
pub mod tokenoutputindex;
pub mod unspentindex;

pub trait DBRow {
    const CF: &'static str;

    fn to_row(&self) -> Row;
    fn from_row(row: &Row) -> Self;
}