windows::Win32::Graphics::DirectWrite

Trait IDWriteTypography_Impl

pub trait IDWriteTypography_Impl: IUnknownImpl {
    // Required methods
    fn AddFontFeature(&self, fontfeature: &DWRITE_FONT_FEATURE) -> Result<()>;
    fn GetFontFeatureCount(&self) -> u32;
    fn GetFontFeature(
        &self,
        fontfeatureindex: u32,
    ) -> Result<DWRITE_FONT_FEATURE>;
}

Required Methods§

fn AddFontFeature(&self, fontfeature: &DWRITE_FONT_FEATURE) -> Result<()>

fn GetFontFeatureCount(&self) -> u32

fn GetFontFeature(&self, fontfeatureindex: u32) -> Result<DWRITE_FONT_FEATURE>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§