pub enum ResolvedTextSpacing {
Percent(f64),
Points(f64),
}Expand description
Concrete paragraph spacing as a font-relative fraction or typographic points.
Variants§
Trait Implementations§
Source§impl Clone for ResolvedTextSpacing
impl Clone for ResolvedTextSpacing
Source§fn clone(&self) -> ResolvedTextSpacing
fn clone(&self) -> ResolvedTextSpacing
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 ResolvedTextSpacing
impl Debug for ResolvedTextSpacing
Source§impl PartialEq for ResolvedTextSpacing
impl PartialEq for ResolvedTextSpacing
impl StructuralPartialEq for ResolvedTextSpacing
Auto Trait Implementations§
impl Freeze for ResolvedTextSpacing
impl RefUnwindSafe for ResolvedTextSpacing
impl Send for ResolvedTextSpacing
impl Sync for ResolvedTextSpacing
impl Unpin for ResolvedTextSpacing
impl UnsafeUnpin for ResolvedTextSpacing
impl UnwindSafe for ResolvedTextSpacing
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