Trait IMLangStringBufW_Impl
pub trait IMLangStringBufW_Impl: IUnknownImpl {
// Required methods
fn GetStatus(&self, plflags: *mut i32, pcchbuf: *mut i32) -> Result<()>;
fn LockBuf(
&self,
cchoffset: i32,
cchmaxlock: i32,
ppszbuf: *mut *mut u16,
pcchbuf: *mut i32,
) -> Result<()>;
fn UnlockBuf(
&self,
pszbuf: &PCWSTR,
cchoffset: i32,
cchwrite: i32,
) -> Result<()>;
fn Insert(
&self,
cchoffset: i32,
cchmaxinsert: i32,
pcchactual: *mut i32,
) -> Result<()>;
fn Delete(&self, cchoffset: i32, cchdelete: i32) -> Result<()>;
}
Required Methods§
fn GetStatus(&self, plflags: *mut i32, pcchbuf: *mut i32) -> Result<()>
fn LockBuf( &self, cchoffset: i32, cchmaxlock: i32, ppszbuf: *mut *mut u16, pcchbuf: *mut i32, ) -> Result<()>
fn UnlockBuf( &self, pszbuf: &PCWSTR, cchoffset: i32, cchwrite: i32, ) -> Result<()>
fn Insert( &self, cchoffset: i32, cchmaxinsert: i32, pcchactual: *mut i32, ) -> Result<()>
fn Delete(&self, cchoffset: i32, cchdelete: 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.