core: derive Debug + Clone for UnixUser

This commit is contained in:
2025-11-29 00:54:13 +09:00
parent dac1c147dd
commit fe87f72b00

View File

@@ -7,6 +7,7 @@ use std::ffi::CString;
pub const DEFAULT_CONFIG_PATH: &str = "/etc/muscl/config.toml";
pub const DEFAULT_SOCKET_PATH: &str = "/run/muscl/muscl.sock";
#[derive(Debug, Clone)]
pub struct UnixUser {
pub username: String,
pub groups: Vec<String>,