1 2 3 4 5 6 7 8 9 10 11 12 13
#![allow(missing_docs)] /// Text alignment options pub enum Alignment { TopLeft, TopRight, TopCenter, CenterLeft, CenterCenter, CenterRight, BottomLeft, BottomRight, BottomCenter, }