Enum fontdue::layout::HorizontalAlign
source · [−]pub enum HorizontalAlign {
Left,
Center,
Right,
}
Expand description
Horizontal alignment options for text when a max_width is provided.
Variants
Left
Aligns text to the left of the region defined by the max_width.
Center
Aligns text to the center of the region defined by the max_width.
Right
Aligns text to the right of the region defined by the max_width.
Trait Implementations
sourceimpl Clone for HorizontalAlign
impl Clone for HorizontalAlign
sourcefn clone(&self) -> HorizontalAlign
fn clone(&self) -> HorizontalAlign
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<HorizontalAlign> for HorizontalAlign
impl PartialEq<HorizontalAlign> for HorizontalAlign
impl Copy for HorizontalAlign
impl StructuralPartialEq for HorizontalAlign
Auto Trait Implementations
impl RefUnwindSafe for HorizontalAlign
impl Send for HorizontalAlign
impl Sync for HorizontalAlign
impl Unpin for HorizontalAlign
impl UnwindSafe for HorizontalAlign
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more