tynavi 0.1.2

An immutable selector library for navigating, filtering, and backtracking through deeply nested Rust data structures.
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate self as tynavi;

pub mod error;
pub mod selector;
pub mod traits;

#[cfg(feature = "derive")]
pub mod macros;

#[cfg(feature = "derive")]
pub use macros::*;