pikkr 0.10.0

JSON Parser which picks up values directly without performing tokenization in Rust
1
2
3
4
5
6
7
8
9
10
use fnv::FnvHashMap;

#[derive(Debug)]
pub struct Query<'a> {
    pub i: usize,
    pub ri: usize,
    pub target: bool,
    pub children: Option<FnvHashMap<&'a[u8], Query<'a>>>,
    pub children_len: usize,
}