// Copyright 2025 the Parley Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT
/// Glyph with an offset and advance.
#[derive(Copy, Clone, Default, Debug, PartialEq)]pubstructGlyph{pubid:u32,
pubstyle_index:u16,
pubx:f32,
puby:f32,
pubadvance:f32,
}implGlyph{/// Returns the index into the layout style collection.
pubfnstyle_index(&self)->usize{self.style_index asusize}}