pub trait RegistryQuery {
// Required method
fn published_versions(
&self,
ecosystem: &str,
package: &str,
) -> Result<Vec<String>>;
}Expand description
Queries a package registry for already-published state — the “remote is ground truth” source the release reconciler consults (ADR-0003).
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".