pub struct LineMetrics {
pub range: Range<usize>,
pub baseline: f32,
pub ascent: f32,
pub descent: f32,
pub left: f32,
pub width: f32,
}Expand description
Per-line metrics for caret/selection UIs (skparagraph’s LineMetrics).
Fields§
§range: Range<usize>§baseline: f32§ascent: f32§descent: f32§left: f32§width: f32Trait Implementations§
Source§impl Clone for LineMetrics
impl Clone for LineMetrics
Source§fn clone(&self) -> LineMetrics
fn clone(&self) -> LineMetrics
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 moreAuto Trait Implementations§
impl Freeze for LineMetrics
impl RefUnwindSafe for LineMetrics
impl Send for LineMetrics
impl Sync for LineMetrics
impl Unpin for LineMetrics
impl UnsafeUnpin for LineMetrics
impl UnwindSafe for LineMetrics
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