pub trait IDWriteFactory6_Impl: Sized + IDWriteFactory5_Impl {
    // Required methods
    fn CreateFontFaceReference3(
        &self,
        fontfile: Option<&IDWriteFontFile>,
        faceindex: u32,
        fontsimulations: DWRITE_FONT_SIMULATIONS,
        fontaxisvalues: *const DWRITE_FONT_AXIS_VALUE,
        fontaxisvaluecount: u32
    ) -> Result<IDWriteFontFaceReference1>;
    fn CreateFontResource(
        &self,
        fontfile: Option<&IDWriteFontFile>,
        faceindex: u32
    ) -> Result<IDWriteFontResource>;
    fn GetSystemFontSet2(
        &self,
        includedownloadablefonts: BOOL
    ) -> Result<IDWriteFontSet1>;
    fn GetSystemFontCollection3(
        &self,
        includedownloadablefonts: BOOL,
        fontfamilymodel: DWRITE_FONT_FAMILY_MODEL
    ) -> Result<IDWriteFontCollection2>;
    fn CreateFontCollectionFromFontSet2(
        &self,
        fontset: Option<&IDWriteFontSet>,
        fontfamilymodel: DWRITE_FONT_FAMILY_MODEL
    ) -> Result<IDWriteFontCollection2>;
    fn CreateFontSetBuilder3(&self) -> Result<IDWriteFontSetBuilder2>;
    fn CreateTextFormat2(
        &self,
        fontfamilyname: &PCWSTR,
        fontcollection: Option<&IDWriteFontCollection>,
        fontaxisvalues: *const DWRITE_FONT_AXIS_VALUE,
        fontaxisvaluecount: u32,
        fontsize: f32,
        localename: &PCWSTR
    ) -> Result<IDWriteTextFormat3>;
}

Required Methods§

fn CreateFontFaceReference3( &self, fontfile: Option<&IDWriteFontFile>, faceindex: u32, fontsimulations: DWRITE_FONT_SIMULATIONS, fontaxisvalues: *const DWRITE_FONT_AXIS_VALUE, fontaxisvaluecount: u32 ) -> Result<IDWriteFontFaceReference1>

fn CreateFontResource( &self, fontfile: Option<&IDWriteFontFile>, faceindex: u32 ) -> Result<IDWriteFontResource>

fn GetSystemFontSet2( &self, includedownloadablefonts: BOOL ) -> Result<IDWriteFontSet1>

fn GetSystemFontCollection3( &self, includedownloadablefonts: BOOL, fontfamilymodel: DWRITE_FONT_FAMILY_MODEL ) -> Result<IDWriteFontCollection2>

fn CreateFontCollectionFromFontSet2( &self, fontset: Option<&IDWriteFontSet>, fontfamilymodel: DWRITE_FONT_FAMILY_MODEL ) -> Result<IDWriteFontCollection2>

fn CreateFontSetBuilder3(&self) -> Result<IDWriteFontSetBuilder2>

fn CreateTextFormat2( &self, fontfamilyname: &PCWSTR, fontcollection: Option<&IDWriteFontCollection>, fontaxisvalues: *const DWRITE_FONT_AXIS_VALUE, fontaxisvaluecount: u32, fontsize: f32, localename: &PCWSTR ) -> Result<IDWriteTextFormat3>

Object Safety§

This trait is not object safe.

Implementors§