pub trait IFillLockBytes_Impl: Sized {
    // 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<()>

Object Safety§

This trait is not object safe.

Implementors§