windows::Win32::UI::Input::Ime

Struct IFEDictionary_Vtbl

#[repr(C)]
pub struct IFEDictionary_Vtbl {
Show 18 fields pub base__: IUnknown_Vtbl, pub Open: unsafe extern "system" fn(_: *mut c_void, _: PSTR, _: *mut IMESHF) -> HRESULT, pub Close: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub GetHeader: unsafe extern "system" fn(_: *mut c_void, _: PSTR, _: *mut IMESHF, _: *mut IMEFMT, _: *mut u32) -> HRESULT, pub DisplayProperty: unsafe extern "system" fn(_: *mut c_void, _: HWND) -> HRESULT, pub GetPosTable: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut POSTBL, _: *mut i32) -> HRESULT, pub GetWords: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: PCWSTR, _: PCWSTR, _: u32, _: u32, _: u32, _: *mut u8, _: u32, _: *mut u32) -> HRESULT, pub NextWords: unsafe extern "system" fn(_: *mut c_void, _: *mut u8, _: u32, _: *mut u32) -> HRESULT, pub Create: unsafe extern "system" fn(_: *mut c_void, _: PCSTR, _: *mut IMESHF) -> HRESULT, pub SetHeader: unsafe extern "system" fn(_: *mut c_void, _: *mut IMESHF) -> HRESULT, pub ExistWord: unsafe extern "system" fn(_: *mut c_void, _: *mut IMEWRD) -> HRESULT, pub ExistDependency: unsafe extern "system" fn(_: *mut c_void, _: *mut IMEDP) -> HRESULT, pub RegisterWord: unsafe extern "system" fn(_: *mut c_void, _: IMEREG, _: *mut IMEWRD) -> HRESULT, pub RegisterDependency: unsafe extern "system" fn(_: *mut c_void, _: IMEREG, _: *mut IMEDP) -> HRESULT, pub GetDependencies: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: PCWSTR, _: u32, _: PCWSTR, _: PCWSTR, _: u32, _: IMEREL, _: u32, _: *mut u8, _: u32, _: *mut u32) -> HRESULT, pub NextDependencies: unsafe extern "system" fn(_: *mut c_void, _: *mut u8, _: u32, _: *mut u32) -> HRESULT, pub ConvertFromOldMSIME: unsafe extern "system" fn(_: *mut c_void, _: PCSTR, _: PFNLOG, _: IMEREG) -> HRESULT, pub ConvertFromUserToSys: unsafe extern "system" fn(_: *mut c_void) -> HRESULT,
}

Fields§

§base__: IUnknown_Vtbl§Open: unsafe extern "system" fn(_: *mut c_void, _: PSTR, _: *mut IMESHF) -> HRESULT§Close: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§GetHeader: unsafe extern "system" fn(_: *mut c_void, _: PSTR, _: *mut IMESHF, _: *mut IMEFMT, _: *mut u32) -> HRESULT§DisplayProperty: unsafe extern "system" fn(_: *mut c_void, _: HWND) -> HRESULT§GetPosTable: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut POSTBL, _: *mut i32) -> HRESULT§GetWords: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: PCWSTR, _: PCWSTR, _: u32, _: u32, _: u32, _: *mut u8, _: u32, _: *mut u32) -> HRESULT§NextWords: unsafe extern "system" fn(_: *mut c_void, _: *mut u8, _: u32, _: *mut u32) -> HRESULT§Create: unsafe extern "system" fn(_: *mut c_void, _: PCSTR, _: *mut IMESHF) -> HRESULT§SetHeader: unsafe extern "system" fn(_: *mut c_void, _: *mut IMESHF) -> HRESULT§ExistWord: unsafe extern "system" fn(_: *mut c_void, _: *mut IMEWRD) -> HRESULT§ExistDependency: unsafe extern "system" fn(_: *mut c_void, _: *mut IMEDP) -> HRESULT§RegisterWord: unsafe extern "system" fn(_: *mut c_void, _: IMEREG, _: *mut IMEWRD) -> HRESULT§RegisterDependency: unsafe extern "system" fn(_: *mut c_void, _: IMEREG, _: *mut IMEDP) -> HRESULT§GetDependencies: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: PCWSTR, _: u32, _: PCWSTR, _: PCWSTR, _: u32, _: IMEREL, _: u32, _: *mut u8, _: u32, _: *mut u32) -> HRESULT§NextDependencies: unsafe extern "system" fn(_: *mut c_void, _: *mut u8, _: u32, _: *mut u32) -> HRESULT§ConvertFromOldMSIME: unsafe extern "system" fn(_: *mut c_void, _: PCSTR, _: PFNLOG, _: IMEREG) -> HRESULT§ConvertFromUserToSys: unsafe extern "system" fn(_: *mut c_void) -> HRESULT

Implementations§

§

impl IFEDictionary_Vtbl

pub const fn new<Identity: IFEDictionary_Impl, const OFFSET: isize>() -> Self

pub fn matches(iid: &GUID) -> bool

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