algostru 0.4.0

Algorithms (algo) and Data Structures (stru)
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub struct Store {
    pub welcomed: bool,
}

impl Store {
    pub fn new() -> Self {
        Store {
            welcomed: false,
        }
    }
}