2023-09-02 20:46:17 -04:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct GlobalSettings<'s> {
|
2023-09-03 12:45:12 -04:00
|
|
|
#[allow(dead_code)]
|
2023-09-02 20:46:17 -04:00
|
|
|
placeholder: Option<&'s str>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'s> GlobalSettings<'s> {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
GlobalSettings { placeholder: None }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'s> Default for GlobalSettings<'s> {
|
|
|
|
fn default() -> Self {
|
|
|
|
GlobalSettings::new()
|
|
|
|
}
|
|
|
|
}
|