[][src]Struct piet::HitTestTextPosition

pub struct HitTestTextPosition {
    pub point: Point,
    pub metrics: HitTestMetrics,
}

return values for hit_test_text_position.

Fields

point: Point

the point's x value is the position of the leading edge of the grapheme cluster containing the text position.

metrics: HitTestMetrics

metrics.text_position will give you the text position.

Trait Implementations

impl Debug for HitTestTextPosition[src]

impl Default for HitTestTextPosition[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.