pub trait DynamicLinkerResolver {
// Required method
fn resolve(&mut self, request: &LibraryRequest) -> Result<ResolvedLibrary>;
}Expand description
Loader-specific resolution, kept behind a trait so the implementation can be replaced (or wrapped for tracing) without touching the planner.
Required Methods§
fn resolve(&mut self, request: &LibraryRequest) -> Result<ResolvedLibrary>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".