Struct SCRIPT_PROPERTIES

Source
#[repr(C)]
pub struct SCRIPT_PROPERTIES { pub bit_fields1: DWORD, pub bit_fields2: DWORD, }

Fields§

§bit_fields1: DWORD§bit_fields2: DWORD

Implementations§

Source§

impl SCRIPT_PROPERTIES

Source

pub fn langid(&self) -> DWORD

Source

pub fn set_langid(&mut self, val: DWORD)

Source

pub fn fNumeric(&self) -> DWORD

Source

pub fn set_fNumeric(&mut self, val: DWORD)

Source

pub fn fComplex(&self) -> DWORD

Source

pub fn set_fComplex(&mut self, val: DWORD)

Source

pub fn fNeedsWordBreaking(&self) -> DWORD

Source

pub fn set_fNeedsWordBreaking(&mut self, val: DWORD)

Source

pub fn fNeedsCaretInfo(&self) -> DWORD

Source

pub fn set_fNeedsCaretInfo(&mut self, val: DWORD)

Source

pub fn bCharSet(&self) -> DWORD

Source

pub fn set_bCharSet(&mut self, val: DWORD)

Source

pub fn fControl(&self) -> DWORD

Source

pub fn set_fControl(&mut self, val: DWORD)

Source

pub fn fPrivateUseArea(&self) -> DWORD

Source

pub fn set_fPrivateUseArea(&mut self, val: DWORD)

Source

pub fn fNeedsCharacterJustify(&self) -> DWORD

Source

pub fn set_fNeedsCharacterJustify(&mut self, val: DWORD)

Source

pub fn fInvalidGlyph(&self) -> DWORD

Source

pub fn set_fInvalidGlyph(&mut self, val: DWORD)

Source§

impl SCRIPT_PROPERTIES

Source

pub fn fInvalidLogAttr(&self) -> DWORD

Source

pub fn set_fInvalidLogAttr(&mut self, val: DWORD)

Source

pub fn fCDM(&self) -> DWORD

Source

pub fn set_fCDM(&mut self, val: DWORD)

Source

pub fn fAmbiguousCharSet(&self) -> DWORD

Source

pub fn set_fAmbiguousCharSet(&mut self, val: DWORD)

Source

pub fn fClusterSizeVaries(&self) -> DWORD

Source

pub fn set_fClusterSizeVaries(&mut self, val: DWORD)

Source

pub fn fRejectInvalid(&self) -> DWORD

Source

pub fn set_fRejectInvalid(&mut self, val: DWORD)

Trait Implementations§

Source§

impl Clone for SCRIPT_PROPERTIES

Source§

fn clone(&self) -> SCRIPT_PROPERTIES

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
Source§

impl Default for SCRIPT_PROPERTIES

Source§

fn default() -> SCRIPT_PROPERTIES

Returns the “default value” for a type. Read more
Source§

impl Copy for SCRIPT_PROPERTIES

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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

Source§

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.