1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//^ //^ UTILS //^ //> UTILS -> ATTRIBUTES #![allow(incomplete_features)] #![feature(generic_const_exprs)] #![feature(const_trait_impl)] //> UTILS -> ARRAY #[cfg(feature = "array")] pub mod array; //> UTILS -> CAGE #[cfg(feature = "cage")] pub mod cage; //> UTILS -> REPORT #[cfg(feature = "report")] pub mod report;