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 duplicate 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 Debug for LineSpacing
impl Debug for LineSpacing
Source§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 FromStr for LineSpacing
impl FromStr for LineSpacing
Source§impl PartialEq for LineSpacing
impl PartialEq for LineSpacing
impl Copy for LineSpacing
impl Eq for LineSpacing
impl StructuralPartialEq for LineSpacing
Auto Trait Implementations§
impl Freeze for LineSpacing
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