pub trait ITMP_FontFeatureTable: IObject {
// Provided methods
fn m_glyph_pair_adjustment_records(
self,
) -> List_1<TMP_GlyphPairAdjustmentRecord> { ... }
fn set_m_glyph_pair_adjustment_records(
self,
value: List_1<TMP_GlyphPairAdjustmentRecord>,
) { ... }
fn m_glyph_pair_adjustment_record_lookup_dictionary(
self,
) -> Dictionary_2<u32, TMP_GlyphPairAdjustmentRecord> { ... }
fn set_m_glyph_pair_adjustment_record_lookup_dictionary(
self,
value: Dictionary_2<u32, TMP_GlyphPairAdjustmentRecord>,
) { ... }
}Provided Methods§
fn m_glyph_pair_adjustment_records( self, ) -> List_1<TMP_GlyphPairAdjustmentRecord>
fn set_m_glyph_pair_adjustment_records( self, value: List_1<TMP_GlyphPairAdjustmentRecord>, )
fn m_glyph_pair_adjustment_record_lookup_dictionary( self, ) -> Dictionary_2<u32, TMP_GlyphPairAdjustmentRecord>
fn set_m_glyph_pair_adjustment_record_lookup_dictionary( self, value: Dictionary_2<u32, TMP_GlyphPairAdjustmentRecord>, )
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.