pub trait VersionStringGetter {
// Required method
fn version_string(&self) -> &str;
}Expand description
Helper trait for accessing version string from unified version types.
Allows generic code to work with UnifiedVersion without circular dependency.