liberty-db 0.1.9

`liberty` data structre
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13


pub trait Group {
    fn name(&self) -> &String;
}

pub trait Check{
    fn check(&self);
}

pub trait Builder{
    fn build(&self);
}