1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! Switched have a boolean state that is changed by
//! `Observation`s.
//!
//! Switches can be used to attach alerts.

mod non_occurrence_indicator;
mod occurrence_indicator;
mod staircase_timer;

pub use self::non_occurrence_indicator::NonOccurrenceIndicator;
pub use self::occurrence_indicator::OccurrenceIndicator;
pub use self::staircase_timer::StaircaseTimer;