nexus-stats-core 1.0.0

Core types and utilities shared across nexus-stats subcrates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Control, thresholding, and differencing.

mod dead_band;
mod debounce;
mod diff;
mod hysteresis;
mod level_crossing;

pub use dead_band::*;
pub use debounce::*;
pub use diff::*;
pub use hysteresis::*;
pub use level_crossing::*;