Trait windows::Win32::System::ClrHosting::ICLRGCManager_Impl

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

Object Safety§

This trait is not object safe.

Implementors§