1 2 3 4 5 6 7 8 9 10 11 12
//! Decay modes. Each struct represents a decay mode. pub(crate) mod internal; pub(crate) mod types; pub(crate) mod decayimpl; pub(crate) mod dhelper; pub use types::*; pub use decayimpl::DecayMode; pub(crate) use dhelper::is_mode_recorded;