1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
// devela::code::util::asserts // //! Assertion utilities. // mod dynamic; // assert_eq_all, assert_approx_eq_all mod r#static; // const_assert! mod test_size_of; // test_size_of! (__test_size_of_report) crate::structural_mods! { // _mods _mods { #[doc(inline)] pub use super::{ dynamic::*, r#static::_all::*, test_size_of::test_size_of, }; } _hidden { pub use super::{ test_size_of::__test_size_of_report, }; } }