pub struct IFELanguage(/* private fields */);Implementations§
Source§impl IFELanguage
impl IFELanguage
pub unsafe fn Open(&self) -> Result<()>
pub unsafe fn Close(&self) -> Result<()>
pub unsafe fn GetJMorphResult<'a>( &self, dwrequest: u32, dwcmode: u32, cwchinput: i32, pwchinput: impl IntoParam<'a, PWSTR>, pfcinfo: *mut u32, ppresult: *mut *mut MORRSLT, ) -> Result<()>
pub unsafe fn GetConversionModeCaps(&self, pdwcaps: *mut u32) -> Result<()>
pub unsafe fn GetPhonetic<'a>( &self, string: impl IntoParam<'a, BSTR>, start: i32, length: i32, phonetic: *mut BSTR, ) -> Result<()>
pub unsafe fn GetConversion<'a>( &self, string: impl IntoParam<'a, BSTR>, start: i32, length: i32, result: *mut BSTR, ) -> Result<()>
Trait Implementations§
Source§impl Clone for IFELanguage
impl Clone for IFELanguage
Source§fn clone(&self) -> IFELanguage
fn clone(&self) -> IFELanguage
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IFELanguage
impl Debug for IFELanguage
Source§impl From<&IFELanguage> for IUnknown
impl From<&IFELanguage> for IUnknown
Source§fn from(value: &IFELanguage) -> Self
fn from(value: &IFELanguage) -> Self
Converts to this type from the input type.
Source§impl From<IFELanguage> for IUnknown
impl From<IFELanguage> for IUnknown
Source§fn from(value: IFELanguage) -> Self
fn from(value: IFELanguage) -> Self
Converts to this type from the input type.
Source§impl Interface for IFELanguage
impl Interface for IFELanguage
const IID: Guid
type Vtable = IFELanguage_abi
Source§unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtablewhere
T: Interface,
Safety Read more
Source§unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
Safety Read more
Source§impl PartialEq for IFELanguage
impl PartialEq for IFELanguage
impl Eq for IFELanguage
impl StructuralPartialEq for IFELanguage
Auto Trait Implementations§
impl Freeze for IFELanguage
impl RefUnwindSafe for IFELanguage
impl !Send for IFELanguage
impl !Sync for IFELanguage
impl Unpin for IFELanguage
impl UnwindSafe for IFELanguage
Blanket Implementations§
Source§impl<T> Abi for Twhere
T: Interface,
impl<T> Abi for Twhere
T: Interface,
type DefaultType = Option<T>
Source§fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
fn ok(value: &<T as Abi>::DefaultType) -> Result<T, Error>
Converts from
Self::DefaultType to Result<T>.Source§fn set_abi(&mut self) -> *mut <T as Abi>::Abi
fn set_abi(&mut self) -> *mut <T as Abi>::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more