This repository has been archived on 2024-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
core/src/app/status.rs

46 lines
801 B
Rust
Raw Normal View History

pub enum State {
None,
Main,
Setup,
}
pub struct Status {
state: State,
account_name: String,
account_user_id: String,
current_room_id: u32,
}
impl Default for Status {
fn default() -> Self {
Self {
state: State::None,
account_name: "".to_string(),
account_user_id: "".to_string(),
current_room_id: 0,
}
}
}
impl Status {
pub fn account_name(&self) -> &String {
&self.account_name
}
pub fn account_user_id(&self) -> &String {
&self.account_user_id
}
pub fn room(&self) -> Option<()> {
None
}
pub fn state(&self) -> &State {
&self.state
}
pub fn set_state(&mut self, state: State) {
self.state = state;
}
}