axone-logic-bindings 7.0.0

A library defining the bindings for querying the AXONE logic module.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod error;
mod query;
mod term_parser;

pub use query::{Answer, AskResponse, LogicCustomQuery, Result, Substitution};
pub use term_parser::TermValue;

// Exposed for testing only
// Both unit tests and integration tests are compiled to native code, so everything in here does not need to compile to Wasm.
#[cfg(not(target_arch = "wasm32"))]
pub mod testing;