Expand description
Used to return the position of a glyph with associated metrics
Fields
pos: Vec2(x, y) coordinate of glyph
ascent: f32Ascent (subtract from y to get top)
descent: f32Descent (subtract from y to get bottom)
Implementations
sourceimpl MarkerPos
impl MarkerPos
sourcepub fn embedding_level(&self) -> u8
pub fn embedding_level(&self) -> u8
Returns the embedding level
According to Unicode Technical Report #9, the embedding level is guaranteed to be between 0 and 125 (inclusive), with a default level of zero and where odd levels are right-to-left.
Trait Implementations
sourceimpl PartialEq<MarkerPos> for MarkerPos
impl PartialEq<MarkerPos> for MarkerPos
impl Copy for MarkerPos
impl StructuralPartialEq for MarkerPos
Auto Trait Implementations
impl RefUnwindSafe for MarkerPos
impl Send for MarkerPos
impl Sync for MarkerPos
impl Unpin for MarkerPos
impl UnwindSafe for MarkerPos
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
impl<S, T> CastApprox<T> for Swhere
T: ConvApprox<S>,
sourcefn try_cast_approx(self) -> Result<T, Error>
fn try_cast_approx(self) -> Result<T, Error>
Try approximate conversion from Self to T Read more
sourcefn cast_approx(self) -> T
fn cast_approx(self) -> T
Cast approximately from Self to T Read more
sourceimpl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
impl<S, T> CastFloat<T> for Swhere
T: ConvFloat<S>,
sourcefn cast_trunc(self) -> T
fn cast_trunc(self) -> T
Cast to integer, truncating Read more
sourcefn cast_nearest(self) -> T
fn cast_nearest(self) -> T
Cast to the nearest integer Read more
sourcefn cast_floor(self) -> T
fn cast_floor(self) -> T
Cast the floor to an integer Read more
sourcefn try_cast_trunc(self) -> Result<T, Error>
fn try_cast_trunc(self) -> Result<T, Error>
Try converting to integer with truncation Read more
sourcefn try_cast_nearest(self) -> Result<T, Error>
fn try_cast_nearest(self) -> Result<T, Error>
Try converting to the nearest integer Read more
sourcefn try_cast_floor(self) -> Result<T, Error>
fn try_cast_floor(self) -> Result<T, Error>
Try converting the floor to an integer Read more
sourcefn try_cast_ceil(self) -> Result<T, Error>
fn try_cast_ceil(self) -> Result<T, Error>
Try convert the ceiling to an integer Read more