pub trait MockWorldChangeExt {
// Required method
fn apply_to_universe<F>(&self, universe: &mut CompilerUniverse<F>)
where F: CompilerFeat;
}Expand description
Applies VFS mock changes to world-level runtime structures.
Required Methods§
Sourcefn apply_to_universe<F>(&self, universe: &mut CompilerUniverse<F>)where
F: CompilerFeat,
fn apply_to_universe<F>(&self, universe: &mut CompilerUniverse<F>)where
F: CompilerFeat,
Applies this change to a compiler universe through the VFS revision path.
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.