vcard_tui 0.1.2

Terminal UI application for managing vCard contacts.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::state::popup::property_n::PropertyNState;

#[derive(Clone)]
pub struct VcardAddState<'a> {
    pub property_n: PropertyNState<'a>,
}

impl<'a> Default for VcardAddState<'a> {
    fn default() -> Self {
        Self {
            property_n: PropertyNState::default(),
        }
    }
}