1/** 2 * log_2 of the maximum number of spaces a Plan can support. 3 */ 4pub const LOG_MAX_SPACES: usize = 4; 5 6/** 7 * Maximum number of spaces a Plan can support. 8 */ 9pub const MAX_SPACES: usize = 1 << LOG_MAX_SPACES;