Trait IFillLockBytes_Impl
pub trait IFillLockBytes_Impl: IUnknownImpl {
// Required methods
fn FillAppend(&self, pv: *const c_void, cb: u32) -> Result<u32>;
fn FillAt(&self, uloffset: u64, pv: *const c_void, cb: u32) -> Result<u32>;
fn SetFillSize(&self, ulsize: u64) -> Result<()>;
fn Terminate(&self, bcanceled: BOOL) -> Result<()>;
}
Required Methods§
fn FillAppend(&self, pv: *const c_void, cb: u32) -> Result<u32>
fn FillAt(&self, uloffset: u64, pv: *const c_void, cb: u32) -> Result<u32>
fn SetFillSize(&self, ulsize: u64) -> Result<()>
fn Terminate(&self, bcanceled: BOOL) -> 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.