pub trait PackResolver: Send + Sync {
// Required methods
fn scheme(&self) -> &'static str;
fn fetch(&self, locator: &str) -> Result<FetchResponse>;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".