Struct piet::HitTestPoint[][src]

#[non_exhaustive]pub struct HitTestPoint {
    pub idx: usize,
    pub is_inside: bool,
}

Result of hit testing a point in a TextLayout.

This type is returned by TextLayout::hit_test_point.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
idx: usize

The index representing the grapheme boundary closest to the Point.

is_inside: bool

Whether or not the point was inside the bounds of the layout object.

A click outside the layout object will still resolve to a position in the text; for instance a click to the right edge of a line will resolve to the end of that line, and a click below the last line will resolve to a position in that line.

Trait Implementations

impl Debug for HitTestPoint[src]

impl Default for HitTestPoint[src]

impl PartialEq<HitTestPoint> for HitTestPoint[src]

impl StructuralPartialEq for HitTestPoint[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.