Skip to main content

rs_teststand/expression/constant/
mod.rs

1//! Named constants of the expression language.
2//!
3//! Two families: [`ColorConstant`] and [`OtherConstant`].
4//!
5//! The published reference does not list the color names, it points at the
6//! editor's expression browser instead, so each name here was confirmed by
7//! evaluating it on a live engine, and the values were read back from the same
8//! run. Nothing in this module is inferred.
9
10pub mod color;
11pub mod other;
12
13pub use color::ColorConstant;
14pub use other::OtherConstant;