Trait IMLangString_Impl
pub trait IMLangString_Impl: IUnknownImpl {
// Required methods
fn Sync(&self, fnoaccess: BOOL) -> Result<()>;
fn GetLength(&self, pllen: *mut i32) -> Result<()>;
fn SetMLStr(
&self,
ldestpos: i32,
ldestlen: i32,
psrcmlstr: Ref<'_, IUnknown>,
lsrcpos: i32,
lsrclen: i32,
) -> Result<()>;
fn GetMLStr(
&self,
lsrcpos: i32,
lsrclen: i32,
punkouter: Ref<'_, IUnknown>,
dwclscontext: u32,
piid: *const GUID,
ppdestmlstr: OutRef<'_, IUnknown>,
pldestpos: *mut i32,
pldestlen: *mut i32,
) -> Result<()>;
}
Required Methods§
fn Sync(&self, fnoaccess: BOOL) -> Result<()>
fn GetLength(&self, pllen: *mut i32) -> Result<()>
fn SetMLStr( &self, ldestpos: i32, ldestlen: i32, psrcmlstr: Ref<'_, IUnknown>, lsrcpos: i32, lsrclen: i32, ) -> Result<()>
fn GetMLStr( &self, lsrcpos: i32, lsrclen: i32, punkouter: Ref<'_, IUnknown>, dwclscontext: u32, piid: *const GUID, ppdestmlstr: OutRef<'_, IUnknown>, pldestpos: *mut i32, pldestlen: *mut i32, ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.