pub trait IDWriteFontFace7_Impl: Sized + IDWriteFontFace6_Impl {
    // Required methods
    fn GetPaintFeatureLevel(
        &self,
        glyphimageformat: DWRITE_GLYPH_IMAGE_FORMATS
    ) -> DWRITE_PAINT_FEATURE_LEVEL;
    fn CreatePaintReader(
        &self,
        glyphimageformat: DWRITE_GLYPH_IMAGE_FORMATS,
        paintfeaturelevel: DWRITE_PAINT_FEATURE_LEVEL
    ) -> Result<IDWritePaintReader>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§