[][src]Struct winapi::um::dwrite::IDWriteFontFaceVtbl

#[repr(C)]
pub struct IDWriteFontFaceVtbl {
    pub parent: IUnknownVtbl,
    pub GetType: unsafe extern "system" fn(This: *mut IDWriteFontFace) -> DWRITE_FONT_FACE_TYPE,
    pub GetFiles: unsafe extern "system" fn(This: *mut IDWriteFontFace, numberOfFiles: *mut UINT32, fontFiles: *mut *mut IDWriteFontFile) -> HRESULT,
    pub GetIndex: unsafe extern "system" fn(This: *mut IDWriteFontFace) -> UINT32,
    pub GetSimulations: unsafe extern "system" fn(This: *mut IDWriteFontFace) -> DWRITE_FONT_SIMULATIONS,
    pub IsSymbolFont: unsafe extern "system" fn(This: *mut IDWriteFontFace) -> BOOL,
    pub GetMetrics: unsafe extern "system" fn(This: *mut IDWriteFontFace, fontFaceMetrics: *mut DWRITE_FONT_METRICS),
    pub GetGlyphCount: unsafe extern "system" fn(This: *mut IDWriteFontFace) -> UINT16,
    pub GetDesignGlyphMetrics: unsafe extern "system" fn(This: *mut IDWriteFontFace, glyphIndices: *const UINT16, glyphCount: UINT32, glyphMetrics: *mut DWRITE_GLYPH_METRICS, isSideways: BOOL) -> HRESULT,
    pub GetGlyphIndices: unsafe extern "system" fn(This: *mut IDWriteFontFace, codePoints: *const UINT32, codePointCount: UINT32, glyphIndices: *mut UINT16) -> HRESULT,
    pub TryGetFontTable: unsafe extern "system" fn(This: *mut IDWriteFontFace, openTypeTableTag: UINT32, tableData: *mut *const c_void, tableSize: *mut UINT32, tableContext: *mut *mut c_void, exists: *mut BOOL) -> HRESULT,
    pub ReleaseFontTable: unsafe extern "system" fn(This: *mut IDWriteFontFace, tableContext: *mut c_void) -> HRESULT,
    pub GetGlyphRunOutline: unsafe extern "system" fn(This: *mut IDWriteFontFace, emSize: FLOAT, glyphIndices: *const UINT16, glyphAdvances: *const FLOAT, glyphOffsets: *const DWRITE_GLYPH_OFFSET, glyphCount: UINT32, isSideways: BOOL, isRightToLeft: BOOL, geometrySink: *mut IDWriteGeometrySink) -> HRESULT,
    pub GetRecommendedRenderingMode: unsafe extern "system" fn(This: *mut IDWriteFontFace, emSize: FLOAT, pixelsPerDip: FLOAT, measuringMode: DWRITE_MEASURING_MODE, renderingParams: *mut IDWriteRenderingParams, renderingMode: *mut DWRITE_RENDERING_MODE) -> HRESULT,
    pub GetGdiCompatibleMetrics: unsafe extern "system" fn(This: *mut IDWriteFontFace, emSize: FLOAT, pixelsPerDip: FLOAT, transform: *const DWRITE_MATRIX, fontFaceMetrics: *mut DWRITE_FONT_METRICS) -> HRESULT,
    pub GetGdiCompatibleGlyphMetrics: unsafe extern "system" fn(This: *mut IDWriteFontFace, enSize: FLOAT, pixelsPerDip: FLOAT, transform: *const DWRITE_MATRIX, useGdiNatrual: BOOL, glyphIndices: *const UINT16, glyphCount: UINT32, glyphMetrics: *mut DWRITE_GLYPH_METRICS, isSideways: BOOL) -> HRESULT,
}

Fields

parent: IUnknownVtblGetType: unsafe extern "system" fn(This: *mut IDWriteFontFace) -> DWRITE_FONT_FACE_TYPEGetFiles: unsafe extern "system" fn(This: *mut IDWriteFontFace, numberOfFiles: *mut UINT32, fontFiles: *mut *mut IDWriteFontFile) -> HRESULTGetIndex: unsafe extern "system" fn(This: *mut IDWriteFontFace) -> UINT32GetSimulations: unsafe extern "system" fn(This: *mut IDWriteFontFace) -> DWRITE_FONT_SIMULATIONSIsSymbolFont: unsafe extern "system" fn(This: *mut IDWriteFontFace) -> BOOLGetMetrics: unsafe extern "system" fn(This: *mut IDWriteFontFace, fontFaceMetrics: *mut DWRITE_FONT_METRICS)GetGlyphCount: unsafe extern "system" fn(This: *mut IDWriteFontFace) -> UINT16GetDesignGlyphMetrics: unsafe extern "system" fn(This: *mut IDWriteFontFace, glyphIndices: *const UINT16, glyphCount: UINT32, glyphMetrics: *mut DWRITE_GLYPH_METRICS, isSideways: BOOL) -> HRESULTGetGlyphIndices: unsafe extern "system" fn(This: *mut IDWriteFontFace, codePoints: *const UINT32, codePointCount: UINT32, glyphIndices: *mut UINT16) -> HRESULTTryGetFontTable: unsafe extern "system" fn(This: *mut IDWriteFontFace, openTypeTableTag: UINT32, tableData: *mut *const c_void, tableSize: *mut UINT32, tableContext: *mut *mut c_void, exists: *mut BOOL) -> HRESULTReleaseFontTable: unsafe extern "system" fn(This: *mut IDWriteFontFace, tableContext: *mut c_void) -> HRESULTGetGlyphRunOutline: unsafe extern "system" fn(This: *mut IDWriteFontFace, emSize: FLOAT, glyphIndices: *const UINT16, glyphAdvances: *const FLOAT, glyphOffsets: *const DWRITE_GLYPH_OFFSET, glyphCount: UINT32, isSideways: BOOL, isRightToLeft: BOOL, geometrySink: *mut IDWriteGeometrySink) -> HRESULTGetRecommendedRenderingMode: unsafe extern "system" fn(This: *mut IDWriteFontFace, emSize: FLOAT, pixelsPerDip: FLOAT, measuringMode: DWRITE_MEASURING_MODE, renderingParams: *mut IDWriteRenderingParams, renderingMode: *mut DWRITE_RENDERING_MODE) -> HRESULTGetGdiCompatibleMetrics: unsafe extern "system" fn(This: *mut IDWriteFontFace, emSize: FLOAT, pixelsPerDip: FLOAT, transform: *const DWRITE_MATRIX, fontFaceMetrics: *mut DWRITE_FONT_METRICS) -> HRESULTGetGdiCompatibleGlyphMetrics: unsafe extern "system" fn(This: *mut IDWriteFontFace, enSize: FLOAT, pixelsPerDip: FLOAT, transform: *const DWRITE_MATRIX, useGdiNatrual: BOOL, glyphIndices: *const UINT16, glyphCount: UINT32, glyphMetrics: *mut DWRITE_GLYPH_METRICS, isSideways: BOOL) -> HRESULT

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]