pub trait IDWriteFontSet3_Impl: Sized + IDWriteFontSet2_Impl {
    // Required methods
    fn GetFontSourceType(&self, fontindex: u32) -> DWRITE_FONT_SOURCE_TYPE;
    fn GetFontSourceNameLength(&self, listindex: u32) -> u32;
    fn GetFontSourceName(
        &self,
        listindex: u32,
        stringbuffer: PWSTR,
        stringbuffersize: u32
    ) -> Result<()>;
}

Required Methods§

fn GetFontSourceType(&self, fontindex: u32) -> DWRITE_FONT_SOURCE_TYPE

fn GetFontSourceNameLength(&self, listindex: u32) -> u32

fn GetFontSourceName( &self, listindex: u32, stringbuffer: PWSTR, stringbuffersize: u32 ) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§