Trait IImageBytes_Impl
pub trait IImageBytes_Impl: IUnknownImpl {
// Required methods
fn CountBytes(&self, pcb: *mut u32) -> Result<()>;
fn LockBytes(
&self,
cb: u32,
uloffset: u32,
ppvbytes: *const *const c_void,
) -> Result<()>;
fn UnlockBytes(
&self,
pvbytes: *const c_void,
cb: u32,
uloffset: u32,
) -> Result<()>;
}
Required Methods§
fn CountBytes(&self, pcb: *mut u32) -> Result<()>
fn LockBytes( &self, cb: u32, uloffset: u32, ppvbytes: *const *const c_void, ) -> Result<()>
fn UnlockBytes( &self, pvbytes: *const c_void, cb: u32, uloffset: u32, ) -> 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.