pub enum Alignment {
LineHome = 0,
LineHomeLeader = 1,
Centre = 2,
CentreLeader = 3,
LineLimit = 4,
LineLimitLeader = 5,
Justify = 6,
}
Expand description
Valid parameter values to the function QUAD
.
Variants§
LineHome = 0
Flush to line home position margin.
LineHomeLeader = 1
Flush to line home position margin and fill with leader.
Centre = 2
Centre between line home position and line limit position margins.
CentreLeader = 3
Center between line home position and line limit position margins and fill with leader.
LineLimit = 4
Flush to line limit position margin.
LineLimitLeader = 5
Flush to line limit position margin and fill with leader.
Justify = 6
Flush to both margins
Trait Implementations§
source§impl PartialEq for Alignment
impl PartialEq for Alignment
impl Copy for Alignment
impl Eq for Alignment
impl StructuralEq for Alignment
impl StructuralPartialEq for Alignment
Auto Trait Implementations§
impl RefUnwindSafe for Alignment
impl Send for Alignment
impl Sync for Alignment
impl Unpin for Alignment
impl UnwindSafe for Alignment
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more