macro_rules! assert_partition {
    (@expr $value:expr) => { ... };
    ($ty:ty) => { ... };
}
Expand description

Asserts that a type can be used as a partition.

§Example

use dynec::system::partition::EntityCreationPartition;
dynec::assert_partition!(EntityCreationPartition);