pub enum Justification {
None,
WordFill,
WordSpace,
LetterSpace,
Hyphenation,
Left,
Centre,
Right,
ItalianHyphenation,
}
Expand description
Valid parameter values to the function JFY
.
Variants§
None
No justification, end of justification of preceding text.
WordFill
Word fill.
WordSpace
Word space.
LetterSpace
Letter space.
Hyphenation
Hyphenation.
Left
Flush to line home position margin.
Centre
Centre between line home position and line limit position margins.
Right
Flush to line limit position margin.
ItalianHyphenation
Italian hyphenation.
Trait Implementations§
source§impl Clone for Justification
impl Clone for Justification
source§fn clone(&self) -> Justification
fn clone(&self) -> Justification
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for Justification
impl Default for Justification
source§fn default() -> Justification
fn default() -> Justification
Returns the “default value” for a type. Read more
source§impl PartialEq<Justification> for Justification
impl PartialEq<Justification> for Justification
source§fn eq(&self, other: &Justification) -> bool
fn eq(&self, other: &Justification) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.