mirror of
https://git.meli.delivery/meli/meli
synced 2024-11-19 03:25:38 +00:00
04411f1003
closes #53
52 lines
1.4 KiB
Rust
52 lines
1.4 KiB
Rust
/*
|
|
* meli - configuration module.
|
|
*
|
|
* Copyright 2017 Manos Pitsidianakis
|
|
*
|
|
* This file is part of meli.
|
|
*
|
|
* meli is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* meli is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with meli. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#[derive(Debug, Default, Clone)]
|
|
pub struct AccountSettings {
|
|
pub name: String,
|
|
pub root_folder: String,
|
|
pub format: String,
|
|
pub sent_folder: String,
|
|
pub identity: String,
|
|
pub display_name: Option<String>,
|
|
}
|
|
|
|
impl AccountSettings {
|
|
pub fn format(&self) -> &str {
|
|
&self.format
|
|
}
|
|
pub fn name(&self) -> &str {
|
|
&self.name
|
|
}
|
|
pub fn set_name(&mut self, s: String) {
|
|
self.name = s;
|
|
}
|
|
pub fn root_folder(&self) -> &str {
|
|
&self.root_folder
|
|
}
|
|
pub fn identity(&self) -> &str {
|
|
&self.identity
|
|
}
|
|
pub fn display_name(&self) -> Option<&String> {
|
|
self.display_name.as_ref()
|
|
}
|
|
}
|