Struct harfbuzz_sys::bindings::hb_ot_math_glyph_part_t
source · #[repr(C)]pub struct hb_ot_math_glyph_part_t {
pub glyph: hb_codepoint_t,
pub start_connector_length: hb_position_t,
pub end_connector_length: hb_position_t,
pub full_advance: hb_position_t,
pub flags: hb_ot_math_glyph_part_flags_t,
}
Expand description
hb_ot_math_glyph_part_t: @glyph: The glyph index of the variant part @start_connector_length: The length of the connector on the starting side of the variant part @end_connector_length: The length of the connector on the ending side of the variant part @full_advance: The total advance of the part @flags: #hb_ot_math_glyph_part_flags_t flags for the part
Data type to hold information for a “part” component of a math-variant glyph. Large variants for stretchable math glyphs (such as parentheses) can be constructed on the fly from parts.
Since: 1.3.3
Fields§
§glyph: hb_codepoint_t
§start_connector_length: hb_position_t
§end_connector_length: hb_position_t
§full_advance: hb_position_t
§flags: hb_ot_math_glyph_part_flags_t
Trait Implementations§
source§impl Clone for hb_ot_math_glyph_part_t
impl Clone for hb_ot_math_glyph_part_t
source§fn clone(&self) -> hb_ot_math_glyph_part_t
fn clone(&self) -> hb_ot_math_glyph_part_t
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for hb_ot_math_glyph_part_t
impl Debug for hb_ot_math_glyph_part_t
impl Copy for hb_ot_math_glyph_part_t
Auto Trait Implementations§
impl Freeze for hb_ot_math_glyph_part_t
impl RefUnwindSafe for hb_ot_math_glyph_part_t
impl Send for hb_ot_math_glyph_part_t
impl Sync for hb_ot_math_glyph_part_t
impl Unpin for hb_ot_math_glyph_part_t
impl UnwindSafe for hb_ot_math_glyph_part_t
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