windows::Win32::System::ClrHosting

Trait ICLRGCManager_Impl

pub trait ICLRGCManager_Impl: IUnknownImpl {
    // Required methods
    fn Collect(&self, generation: i32) -> Result<()>;
    fn GetStats(&self, pstats: *mut COR_GC_STATS) -> Result<()>;
    fn SetGCStartupLimits(
        &self,
        segmentsize: u32,
        maxgen0size: u32,
    ) -> Result<()>;
}

Required Methods§

fn Collect(&self, generation: i32) -> Result<()>

fn GetStats(&self, pstats: *mut COR_GC_STATS) -> Result<()>

fn SetGCStartupLimits(&self, segmentsize: u32, maxgen0size: 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.

Implementors§