broot 1.6.2

A new file manager
Documentation
1
2
3
4
5
6
7
8
9
/// The unique identifiant of a panel
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct PanelId(usize);

impl From<usize> for PanelId {
    fn from(u: usize) -> Self {
        Self(u)
    }
}