Trait IEmptyVolumeCacheCallBack_Impl
pub trait IEmptyVolumeCacheCallBack_Impl: IUnknownImpl {
// Required methods
fn ScanProgress(
&self,
dwlspaceused: u64,
dwflags: u32,
pcwszstatus: &PCWSTR,
) -> Result<()>;
fn PurgeProgress(
&self,
dwlspacefreed: u64,
dwlspacetofree: u64,
dwflags: u32,
pcwszstatus: &PCWSTR,
) -> Result<()>;
}
Required Methods§
fn ScanProgress( &self, dwlspaceused: u64, dwflags: u32, pcwszstatus: &PCWSTR, ) -> Result<()>
fn PurgeProgress( &self, dwlspacefreed: u64, dwlspacetofree: u64, dwflags: u32, pcwszstatus: &PCWSTR, ) -> 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.