pub enum LineHeight {
Normal,
Number(f32),
LengthPercentage(LengthPercentage),
}Expand description
Value for line-height.
Variants§
Normal
normal — engine-chosen line height.
Number(f32)
Unit-less multiplier of the element’s font-size.
LengthPercentage(LengthPercentage)
Explicit length or percentage.
Trait Implementations§
Source§impl Clone for LineHeight
impl Clone for LineHeight
Source§fn clone(&self) -> LineHeight
fn clone(&self) -> LineHeight
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LineHeight
impl Debug for LineHeight
Source§impl From<Length> for LineHeight
impl From<Length> for LineHeight
Source§impl From<LengthPercentage> for LineHeight
impl From<LengthPercentage> for LineHeight
Source§fn from(lp: LengthPercentage) -> Self
fn from(lp: LengthPercentage) -> Self
Converts to this type from the input type.
Source§impl From<Percentage> for LineHeight
impl From<Percentage> for LineHeight
Source§fn from(p: Percentage) -> Self
fn from(p: Percentage) -> Self
Converts to this type from the input type.
Source§impl From<f32> for LineHeight
impl From<f32> for LineHeight
Source§impl PartialEq for LineHeight
impl PartialEq for LineHeight
Source§fn eq(&self, other: &LineHeight) -> bool
fn eq(&self, other: &LineHeight) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LineHeight
Auto Trait Implementations§
impl Freeze for LineHeight
impl RefUnwindSafe for LineHeight
impl Send for LineHeight
impl Sync for LineHeight
impl Unpin for LineHeight
impl UnsafeUnpin for LineHeight
impl UnwindSafe for LineHeight
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