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

Required Methods§

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

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

Object Safety§

This trait is not object safe.

Implementors§