Struct piet_cairo::CairoTextLayout
source · pub struct CairoTextLayout { /* private fields */ }Trait Implementations§
source§impl Clone for CairoTextLayout
impl Clone for CairoTextLayout
source§fn clone(&self) -> CairoTextLayout
fn clone(&self) -> CairoTextLayout
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 CairoTextLayout
impl Debug for CairoTextLayout
source§impl TextLayout for CairoTextLayout
impl TextLayout for CairoTextLayout
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, Global>
fn rects_for_range(&self, range: impl RangeBounds<usize>) -> Vec<Rect, Global>
Auto Trait Implementations§
impl !RefUnwindSafe for CairoTextLayout
impl !Send for CairoTextLayout
impl !Sync for CairoTextLayout
impl Unpin for CairoTextLayout
impl !UnwindSafe for CairoTextLayout
Blanket Implementations§
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.