#[non_exhaustive]pub struct HostBoxGlyph {
pub glyph: GlyphId,
pub origin: Point,
}Expand description
A glyph at its baseline origin, relative to the box’s baseline origin with y down.
Fields (Non-exhaustive)§
This struct is marked as 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.glyph: GlyphIdGlyph index in the run’s face.
origin: PointBaseline origin of the glyph.
Implementations§
Trait Implementations§
Source§impl Clone for HostBoxGlyph
impl Clone for HostBoxGlyph
impl Copy for HostBoxGlyph
Source§impl Debug for HostBoxGlyph
impl Debug for HostBoxGlyph
impl Eq for HostBoxGlyph
Source§impl PartialEq for HostBoxGlyph
impl PartialEq for HostBoxGlyph
impl StructuralPartialEq for HostBoxGlyph
Auto Trait Implementations§
impl Freeze for HostBoxGlyph
impl RefUnwindSafe for HostBoxGlyph
impl Send for HostBoxGlyph
impl Sync for HostBoxGlyph
impl Unpin for HostBoxGlyph
impl UnsafeUnpin for HostBoxGlyph
impl UnwindSafe for HostBoxGlyph
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