atac 0.13.0-bis

Arguably a Terminal API Client. Feature-full, free, open-source, offline and account-less.
1
2
3
4
5
6
7
8
9
10
#[derive(Default)]
pub struct ValidationPopup {
    pub state: bool,
}

impl ValidationPopup {
    pub fn change_state(&mut self) {
        self.state = !self.state
    }
}