pub trait ChangeOverlayPort {
// Required method
fn build_change_overlay(
&mut self,
catalog: &SourceCatalog,
index: &CodeIndex,
) -> WorkspaceResult<ChangeOverlay>;
}Required Methods§
fn build_change_overlay( &mut self, catalog: &SourceCatalog, index: &CodeIndex, ) -> WorkspaceResult<ChangeOverlay>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".