mirror of
https://gitlab.steamos.cloud/holo/steamos-manager.git
synced 2025-07-16 11:16:45 -04:00
daemon: Config structs don't need to be Serialize
This commit is contained in:
parent
b9e23b74e2
commit
1892320db7
2 changed files with 4 additions and 4 deletions
|
@ -22,13 +22,13 @@ use crate::manager::user::SteamOSManager;
|
|||
use crate::path;
|
||||
use crate::udev::UdevMonitor;
|
||||
|
||||
#[derive(Copy, Clone, Default, Deserialize, Serialize, Debug)]
|
||||
#[derive(Copy, Clone, Default, Deserialize, Debug)]
|
||||
#[serde(default)]
|
||||
pub(crate) struct UserConfig {
|
||||
pub services: UserServicesConfig,
|
||||
}
|
||||
|
||||
#[derive(Copy, Clone, Default, Deserialize, Serialize, Debug)]
|
||||
#[derive(Copy, Clone, Default, Deserialize, Debug)]
|
||||
pub(crate) struct UserServicesConfig {}
|
||||
|
||||
#[derive(Copy, Clone, Default, Deserialize, Serialize, Debug)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue