querable 0.0.2

Quer(y)able data structure implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
///
/// Since traversals only supports for traversable data structure
/// like dictionary or array, other than that are mostly literals.
///
/// - [QueryKind::Array](QueryKind::Array) are being used in case
///   underlying data structure support indexing by `usize`.
///
/// - [QueryKind::Dictionary](QueryKind::Dictionary) are being used in
///   case underlying data structure support fetch value by key/path `&str`.
///
#[derive(Debug, PartialEq)]
pub enum QueryKind {
    Array,
    Dictionary,
}