pub trait IDWriteLocalizedStrings_Impl: Sized {
    // Required methods
    fn GetCount(&self) -> u32;
    fn FindLocaleName(
        &self,
        localename: &PCWSTR,
        index: *mut u32,
        exists: *mut BOOL
    ) -> Result<()>;
    fn GetLocaleNameLength(&self, index: u32) -> Result<u32>;
    fn GetLocaleName(
        &self,
        index: u32,
        localename: PWSTR,
        size: u32
    ) -> Result<()>;
    fn GetStringLength(&self, index: u32) -> Result<u32>;
    fn GetString(
        &self,
        index: u32,
        stringbuffer: PWSTR,
        size: u32
    ) -> Result<()>;
}

Required Methods§

fn GetCount(&self) -> u32

fn FindLocaleName( &self, localename: &PCWSTR, index: *mut u32, exists: *mut BOOL ) -> Result<()>

fn GetLocaleNameLength(&self, index: u32) -> Result<u32>

fn GetLocaleName(&self, index: u32, localename: PWSTR, size: u32) -> Result<()>

fn GetStringLength(&self, index: u32) -> Result<u32>

fn GetString(&self, index: u32, stringbuffer: PWSTR, size: u32) -> Result<()>

Object Safety§

This trait is not object safe.

Implementors§