arthas 0.3.0

Arthas is an in-memory structure database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#[derive(Debug)]
pub enum Action {
    Insert,
    Find,
    FindOne,
    Count,
    Replace,
    Update,
    Remove,
}

impl Default for Action {
    fn default() -> Action {
        Action::Find
    }
}