boardwalk 1.0.0

Hypermedia server framework with reverse-tunnel federation
Documentation
1
2
3
4
5
6
7
8
//! Runtime-owned query model. CaQL is one syntax adapter; this module
//! holds the canonical AST and evaluator.

mod ast;
mod eval;

pub use ast::{ComparisonOp, FieldPath, Literal, Predicate, Projection, Query, QueryError};
pub use eval::{matches, project};