pub enum JustifyMode {
None,
WordFill,
WordSpace,
LetterSpace,
Hyphen,
FlushHome,
Center,
FlushLimit,
ItalianHyphen,
}
Variants§
None
No justification, end of justification of preceding text.
WordFill
WordSpace
LetterSpace
Hyphen
FlushHome
Flush to line home position margin.
Center
Centre between line home position and line limit position margins.
FlushLimit
Flush to line limit position margin.
ItalianHyphen
Trait Implementations§
Source§impl Clone for JustifyMode
impl Clone for JustifyMode
Source§fn clone(&self) -> JustifyMode
fn clone(&self) -> JustifyMode
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for JustifyMode
impl Debug for JustifyMode
Source§impl Display for JustifyMode
impl Display for JustifyMode
impl Copy for JustifyMode
Auto Trait Implementations§
impl Freeze for JustifyMode
impl RefUnwindSafe for JustifyMode
impl Send for JustifyMode
impl Sync for JustifyMode
impl Unpin for JustifyMode
impl UnwindSafe for JustifyMode
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