pub struct TagIndex {
pub tag_to_sha: HashMap<String, String>,
pub sha_to_tag: HashMap<String, String>,
}Expand description
Per-PackageName tag/release-name -> commit-SHA cross-reference.
Mirrors deps_github_actions::registry::TagIndex in shape — lets a SHA pin render a
readable **Resolved** hover line. Populated from whichever endpoint the route used: tag
names for project:, release names for component:.
Fields§
§tag_to_sha: HashMap<String, String>§sha_to_tag: HashMap<String, String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TagIndex
impl RefUnwindSafe for TagIndex
impl Send for TagIndex
impl Sync for TagIndex
impl Unpin for TagIndex
impl UnsafeUnpin for TagIndex
impl UnwindSafe for TagIndex
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more