usecrate::types::glyph::GlyphKey;/// A glyph that has been shaped and positioned in screen space.
/// This is the output of the FontProvider and the input for the Renderer.
#[derive(Debug, Clone, Copy, PartialEq)]pubstructShapedGlyph{/// Unique identifier for the font and glyph index.
pubkey: GlyphKey,
/// Byte index of the character in the input string.
pubcluster:usize,
/// X coordinate in logical pixels.
pubx:f32,
/// Y coordinate in logical pixels.
puby:f32,
/// Width of the glyph (may include padding/advancement).
pubwidth:f32,
/// Height of the glyph.
pubheight:f32,
}