From 8013a80b41d4345360b22023c05053a37f90773a Mon Sep 17 00:00:00 2001 From: Lukas Wagner Date: Thu, 20 Jul 2023 16:31:28 +0200 Subject: [PATCH] section-config: derive Clone for SectionConfigData Signed-off-by: Lukas Wagner --- proxmox-section-config/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox-section-config/src/lib.rs b/proxmox-section-config/src/lib.rs index a86692a8..4441df12 100644 --- a/proxmox-section-config/src/lib.rs +++ b/proxmox-section-config/src/lib.rs @@ -101,7 +101,7 @@ enum ParseState<'a> { } /// Interface to manipulate configuration data -#[derive(Debug)] +#[derive(Debug, Clone)] pub struct SectionConfigData { pub sections: HashMap, pub order: Vec,