#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Parenthood {
Childless,
Parent,
}
impl Parenthood {
pub const fn from_children_count(children_count: usize) -> Self {
if children_count == 0 {
Parenthood::Childless
} else {
Parenthood::Parent
}
}
}