pub struct IDWriteTextFormat2(/* private fields */);

Implementations§

§

impl IDWriteTextFormat2

pub unsafe fn SetTextAlignment( &self, textalignment: DWRITE_TEXT_ALIGNMENT ) -> Result<()>

pub unsafe fn SetParagraphAlignment( &self, paragraphalignment: DWRITE_PARAGRAPH_ALIGNMENT ) -> Result<()>

pub unsafe fn SetWordWrapping( &self, wordwrapping: DWRITE_WORD_WRAPPING ) -> Result<()>

pub unsafe fn SetReadingDirection( &self, readingdirection: DWRITE_READING_DIRECTION ) -> Result<()>

pub unsafe fn SetFlowDirection( &self, flowdirection: DWRITE_FLOW_DIRECTION ) -> Result<()>

pub unsafe fn SetIncrementalTabStop( &self, incrementaltabstop: f32 ) -> Result<()>

pub unsafe fn SetTrimming<P0>( &self, trimmingoptions: *const DWRITE_TRIMMING, trimmingsign: P0 ) -> Result<()>
where P0: IntoParam<IDWriteInlineObject>,

pub unsafe fn SetLineSpacing( &self, linespacingmethod: DWRITE_LINE_SPACING_METHOD, linespacing: f32, baseline: f32 ) -> Result<()>

pub unsafe fn GetTextAlignment(&self) -> DWRITE_TEXT_ALIGNMENT

pub unsafe fn GetParagraphAlignment(&self) -> DWRITE_PARAGRAPH_ALIGNMENT

pub unsafe fn GetWordWrapping(&self) -> DWRITE_WORD_WRAPPING

pub unsafe fn GetReadingDirection(&self) -> DWRITE_READING_DIRECTION

pub unsafe fn GetFlowDirection(&self) -> DWRITE_FLOW_DIRECTION

pub unsafe fn GetIncrementalTabStop(&self) -> f32

pub unsafe fn GetTrimming( &self, trimmingoptions: *mut DWRITE_TRIMMING, trimmingsign: *mut Option<IDWriteInlineObject> ) -> Result<()>

pub unsafe fn GetLineSpacing( &self, linespacingmethod: *mut DWRITE_LINE_SPACING_METHOD, linespacing: *mut f32, baseline: *mut f32 ) -> Result<()>

pub unsafe fn GetFontCollection(&self) -> Result<IDWriteFontCollection>

pub unsafe fn GetFontFamilyNameLength(&self) -> u32

pub unsafe fn GetFontFamilyName(&self, fontfamilyname: &mut [u16]) -> Result<()>

pub unsafe fn GetFontWeight(&self) -> DWRITE_FONT_WEIGHT

pub unsafe fn GetFontStyle(&self) -> DWRITE_FONT_STYLE

pub unsafe fn GetFontStretch(&self) -> DWRITE_FONT_STRETCH

pub unsafe fn GetFontSize(&self) -> f32

pub unsafe fn GetLocaleNameLength(&self) -> u32

pub unsafe fn GetLocaleName(&self, localename: &mut [u16]) -> Result<()>

pub unsafe fn SetVerticalGlyphOrientation( &self, glyphorientation: DWRITE_VERTICAL_GLYPH_ORIENTATION ) -> Result<()>

pub unsafe fn GetVerticalGlyphOrientation( &self ) -> DWRITE_VERTICAL_GLYPH_ORIENTATION

pub unsafe fn SetLastLineWrapping<P0>( &self, islastlinewrappingenabled: P0 ) -> Result<()>
where P0: IntoParam<BOOL>,

pub unsafe fn GetLastLineWrapping(&self) -> BOOL

pub unsafe fn SetOpticalAlignment( &self, opticalalignment: DWRITE_OPTICAL_ALIGNMENT ) -> Result<()>

pub unsafe fn GetOpticalAlignment(&self) -> DWRITE_OPTICAL_ALIGNMENT

pub unsafe fn SetFontFallback<P0>(&self, fontfallback: P0) -> Result<()>
where P0: IntoParam<IDWriteFontFallback>,

pub unsafe fn GetFontFallback(&self) -> Result<IDWriteFontFallback>

pub unsafe fn SetLineSpacing2( &self, linespacingoptions: *const DWRITE_LINE_SPACING ) -> Result<()>

pub unsafe fn GetLineSpacing2( &self, linespacingoptions: *mut DWRITE_LINE_SPACING ) -> Result<()>

Trait Implementations§

§

impl Clone for IDWriteTextFormat2

§

fn clone(&self) -> IDWriteTextFormat2

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for IDWriteTextFormat2

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl From<&IDWriteTextFormat2> for &IDWriteTextFormat

§

fn from(value: &IDWriteTextFormat2) -> Self

Converts to this type from the input type.
§

impl From<&IDWriteTextFormat2> for &IDWriteTextFormat1

§

fn from(value: &IDWriteTextFormat2) -> Self

Converts to this type from the input type.
§

impl From<&IDWriteTextFormat2> for &IUnknown

§

fn from(value: &IDWriteTextFormat2) -> Self

Converts to this type from the input type.
§

impl From<&IDWriteTextFormat3> for &IDWriteTextFormat2

§

fn from(value: &IDWriteTextFormat3) -> Self

Converts to this type from the input type.
§

impl From<IDWriteTextFormat2> for IDWriteTextFormat

§

fn from(value: IDWriteTextFormat2) -> Self

Converts to this type from the input type.
§

impl From<IDWriteTextFormat2> for IDWriteTextFormat1

§

fn from(value: IDWriteTextFormat2) -> Self

Converts to this type from the input type.
§

impl From<IDWriteTextFormat2> for IUnknown

§

fn from(value: IDWriteTextFormat2) -> Self

Converts to this type from the input type.
§

impl From<IDWriteTextFormat3> for IDWriteTextFormat2

§

fn from(value: IDWriteTextFormat3) -> Self

Converts to this type from the input type.
§

impl Interface for IDWriteTextFormat2

§

fn as_raw(&self) -> *mut c_void

Returns the raw COM interface pointer. The resulting pointer continues to be owned by the Interface implementation.
§

fn into_raw(self) -> *mut c_void

Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§

unsafe fn from_raw(raw: *mut c_void) -> Self

Creates an Interface by taking ownership of the raw COM interface pointer. Read more
§

unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>

Creates an Interface that is valid so long as the raw COM interface pointer is valid. Read more
§

fn cast<T>(&self) -> Result<T, Error>
where T: Interface,

Attempts to cast the current interface to another interface using QueryInterface. Read more
§

fn downgrade(&self) -> Result<Weak<Self>, Error>

Attempts to create a Weak reference to this object.
§

unsafe fn query(&self, iid: *const GUID, interface: *mut *mut c_void) -> HRESULT

Call QueryInterface on this interface Read more
§

impl PartialEq for IDWriteTextFormat2

§

fn eq(&self, other: &IDWriteTextFormat2) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for IDWriteTextFormat2

§

impl Send for IDWriteTextFormat2

§

impl StructuralPartialEq for IDWriteTextFormat2

§

impl Sync for IDWriteTextFormat2

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.