cursive-tabs 0.8.0

Tabs for gyscos/cursive views
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct IdNotFound {
    pub id: String,
}

impl std::error::Error for IdNotFound {}

impl std::fmt::Display for IdNotFound {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "Id not found: {}", self.id)
    }
}