pub struct TextLayout(/* private fields */);
Expand description
The text layout for tiny-skia
.
Trait Implementations§
Source§impl Clone for TextLayout
impl Clone for TextLayout
Source§fn clone(&self) -> TextLayout
fn clone(&self) -> TextLayout
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 Debug for TextLayout
impl Debug for TextLayout
Source§impl TextLayout for TextLayout
impl TextLayout for TextLayout
Source§fn trailing_whitespace_width(&self) -> f64
fn trailing_whitespace_width(&self) -> f64
The width of this layout, including the width of any trailing whitespace. Read more
Source§fn image_bounds(&self) -> Rect
fn image_bounds(&self) -> Rect
Returns a
Rect
representing the bounding box of the glyphs in this layout,
relative to the top-left of the layout object. Read moreSource§fn line_text(&self, line_number: usize) -> Option<&str>
fn line_text(&self, line_number: usize) -> Option<&str>
Given a line number, return a reference to that line’s underlying string. Read more
Source§fn line_metric(&self, line_number: usize) -> Option<LineMetric>
fn line_metric(&self, line_number: usize) -> Option<LineMetric>
Given a line number, return a reference to that line’s metrics, if the line exists. Read more
Source§fn line_count(&self) -> usize
fn line_count(&self) -> usize
Returns total number of lines in the text layout. Read more
Source§fn hit_test_point(&self, point: Point) -> HitTestPoint
fn hit_test_point(&self, point: Point) -> HitTestPoint
Source§fn hit_test_text_position(&self, idx: usize) -> HitTestPosition
fn hit_test_text_position(&self, idx: usize) -> HitTestPosition
Given a grapheme boundary in the string used to create this
TextLayout
,
return a HitTestPosition
object describing the location of that boundary
within the layout. Read moreSource§fn rects_for_range(&self, range: impl RangeBounds<usize>) -> Vec<Rect>
fn rects_for_range(&self, range: impl RangeBounds<usize>) -> Vec<Rect>
Auto Trait Implementations§
impl Freeze for TextLayout
impl !RefUnwindSafe for TextLayout
impl !Send for TextLayout
impl !Sync for TextLayout
impl Unpin for TextLayout
impl !UnwindSafe for TextLayout
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
Source§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.