cargo-port 0.2.0

A TUI for inspecting and managing Rust projects
1
2
3
4
5
6
7
use crate::tui::panes::PaneId;

#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct HoveredPaneRow {
    pub pane: PaneId,
    pub row:  usize,
}