pub trait IDWriteFactory7_Impl: Sized + IDWriteFactory6_Impl {
    // Required methods
    fn GetSystemFontSet(
        &self,
        includedownloadablefonts: BOOL,
    ) -> Result<IDWriteFontSet2>;
    fn GetSystemFontCollection(
        &self,
        includedownloadablefonts: BOOL,
        fontfamilymodel: DWRITE_FONT_FAMILY_MODEL,
    ) -> Result<IDWriteFontCollection3>;
}

Required Methods§

fn GetSystemFontSet( &self, includedownloadablefonts: BOOL, ) -> Result<IDWriteFontSet2>

fn GetSystemFontCollection( &self, includedownloadablefonts: BOOL, fontfamilymodel: DWRITE_FONT_FAMILY_MODEL, ) -> Result<IDWriteFontCollection3>

Object Safety§

This trait is not object safe.

Implementors§