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

#[repr(C)]pub struct IDWriteTextAnalysisSinkVtbl {
    pub parent: IUnknownVtbl,
    pub SetScriptAnalysis: unsafe extern "system" fn(This: *mut IDWriteTextAnalysisSink, textPosition: UINT32, textLength: UINT32, scriptAnalysis: *const DWRITE_SCRIPT_ANALYSIS) -> HRESULT,
    pub SetLineBreakpoints: unsafe extern "system" fn(This: *mut IDWriteTextAnalysisSink, textPosition: UINT32, textLength: UINT32, lineBreakpoints: *const DWRITE_LINE_BREAKPOINT) -> HRESULT,
    pub SetBidiLevel: unsafe extern "system" fn(This: *mut IDWriteTextAnalysisSink, textPosition: UINT32, textLength: UINT32, explicitLevel: UINT8, resolvedLevel: UINT8) -> HRESULT,
    pub SetNumberSubstitution: unsafe extern "system" fn(This: *mut IDWriteTextAnalysisSink, textPosition: UINT32, textLength: UINT32, numberSubstitution: *mut IDWriteNumberSubstitution) -> HRESULT,
}

Fields

parent: IUnknownVtblSetScriptAnalysis: unsafe extern "system" fn(This: *mut IDWriteTextAnalysisSink, textPosition: UINT32, textLength: UINT32, scriptAnalysis: *const DWRITE_SCRIPT_ANALYSIS) -> HRESULTSetLineBreakpoints: unsafe extern "system" fn(This: *mut IDWriteTextAnalysisSink, textPosition: UINT32, textLength: UINT32, lineBreakpoints: *const DWRITE_LINE_BREAKPOINT) -> HRESULTSetBidiLevel: unsafe extern "system" fn(This: *mut IDWriteTextAnalysisSink, textPosition: UINT32, textLength: UINT32, explicitLevel: UINT8, resolvedLevel: UINT8) -> HRESULTSetNumberSubstitution: unsafe extern "system" fn(This: *mut IDWriteTextAnalysisSink, textPosition: UINT32, textLength: UINT32, numberSubstitution: *mut IDWriteNumberSubstitution) -> HRESULT

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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> 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.