usecrate::config::*;/// Enumerator denoting, for each channel what the level approximately is. Low,
/// fine, high or clipped.
#[cfg_attr(feature ="python-bindings",pyclass(eq, eq_int))]#[derive(Copy, Debug, PartialEq, Clone, Default)]pubenumClipState{/// Level is rather low
#[default]
LowLevel,/// Default state, fine levels
LevelFine,/// High levels: warning!
HighLevel,/// Signal probably clipped. The instant denotes when in history the clip
/// happened.
Clipped,}