[][src]Struct winapi::um::dwrite_3::IDWriteTextFormat2

#[repr(C)]pub struct IDWriteTextFormat2 {
    pub lpVtbl: *const IDWriteTextFormat2Vtbl,
}

Fields

lpVtbl: *const IDWriteTextFormat2Vtbl

Implementations

impl IDWriteTextFormat2[src]

pub unsafe fn SetLineSpacing(
    &self,
    lineSpacingOptions: *const DWRITE_LINE_SPACING
) -> HRESULT
[src]

pub unsafe fn GetLineSpacing(
    &self,
    lineSpacingOptions: *mut DWRITE_LINE_SPACING
) -> HRESULT
[src]

Methods from Deref<Target = IDWriteTextFormat1>

pub unsafe fn SetVerticalGlyphOrientation(
    &self,
    glyphOrientation: DWRITE_VERTICAL_GLYPH_ORIENTATION
) -> HRESULT
[src]

pub unsafe fn GetVerticalGlyphOrientation(
    &self
) -> DWRITE_VERTICAL_GLYPH_ORIENTATION
[src]

pub unsafe fn SetLastLineWrapping(
    &self,
    isLastLineWrappingEnabled: BOOL
) -> HRESULT
[src]

pub unsafe fn GetLastLineWrapping(&self) -> BOOL[src]

pub unsafe fn SetOpticalAlignment(
    &self,
    opticalAlignment: DWRITE_OPTICAL_ALIGNMENT
) -> HRESULT
[src]

pub unsafe fn GetOpticalAlignment(&self) -> DWRITE_OPTICAL_ALIGNMENT[src]

pub unsafe fn SetFontFallback(
    &self,
    fontFallback: *mut IDWriteFontFallback
) -> HRESULT
[src]

pub unsafe fn GetFontFallback(
    &self,
    fontFallback: *mut *mut IDWriteFontFallback
) -> HRESULT
[src]

Trait Implementations

impl Deref for IDWriteTextFormat2[src]

type Target = IDWriteTextFormat1

The resulting type after dereferencing.

impl Interface for IDWriteTextFormat2[src]

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.