pub enum LineSpacing {
SixLinesPer25 = 0,
FourLinesPer25 = 1,
ThreeLinesPer25 = 2,
TwelveLinesPer25 = 3,
EightLinesPer25 = 4,
SixLinesPer30 = 5,
FourLinesPer30 = 6,
ThreeLinesPer30 = 7,
TwelveLinesPer30 = 8,
TwoLinesPer25 = 9,
}
Expand description
Valid parameter values to the function SLS
.
Variants§
SixLinesPer25 = 0
Six lines per 25.4 mm.
FourLinesPer25 = 1
Four lines per 25.4 mm.
ThreeLinesPer25 = 2
Three lines per 25.4 mm.
TwelveLinesPer25 = 3
Twelve lines per 25.4 mm.
EightLinesPer25 = 4
Eight lines per 25.4 mm.
SixLinesPer30 = 5
Six lines per 30 mm.
FourLinesPer30 = 6
Four lines per 30 mm.
ThreeLinesPer30 = 7
Three lines per 30 mm.
TwelveLinesPer30 = 8
Twelve lines per 30 mm.
TwoLinesPer25 = 9
Two lines per 25.4 mm.
Trait Implementations§
source§impl Clone for LineSpacing
impl Clone for LineSpacing
source§fn clone(&self) -> LineSpacing
fn clone(&self) -> LineSpacing
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 LineSpacing
impl Default for LineSpacing
source§fn default() -> LineSpacing
fn default() -> LineSpacing
Returns the “default value” for a type. Read more
source§impl PartialEq for LineSpacing
impl PartialEq for LineSpacing
source§fn eq(&self, other: &LineSpacing) -> bool
fn eq(&self, other: &LineSpacing) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for LineSpacing
impl Eq for LineSpacing
impl StructuralEq for LineSpacing
impl StructuralPartialEq for LineSpacing
Auto Trait Implementations§
impl RefUnwindSafe for LineSpacing
impl Send for LineSpacing
impl Sync for LineSpacing
impl Unpin for LineSpacing
impl UnwindSafe for LineSpacing
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