pub trait VersionGroupResolver {
type VM;
// Required method
fn resolve<'s, 'u: 's, T: Borrow<VersionGroupURI<'u>> + 's>(
&'s self,
uri: &'u T,
) -> Option<&Self::VM>;
}Expand description
Find the VersionMap associated to a VersionGroupURI
Required Associated Types§
Required Methods§
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.