pub trait YankedChecker { // Required method fn is_yanked(&self) -> bool; }
Helper trait for checking if a version is yanked.
Allows generic code to work with UnifiedVersion without circular dependency.