1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum MainAxisAlignment {
Start = 0,
End = 1,
Center = 2,
SpaceBetween = 3,
SpaceAround = 4,
SpaceEvenly = 5,
}
impl Default for MainAxisAlignment {
fn default() -> Self {
Self::Start
}
}