From b5d6ebc378daec2ed2d9ec389e4637c59537ffba Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 14 Aug 2026 03:39:07 +0800 Subject: feat: derive Clone, Copy, PartialEq, Eq for MockProgramCollect --- mingling_core/src/program/collection/mock.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'mingling_core/src') diff --git a/mingling_core/src/program/collection/mock.rs b/mingling_core/src/program/collection/mock.rs index c22ff95..b8d881e 100644 --- a/mingling_core/src/program/collection/mock.rs +++ b/mingling_core/src/program/collection/mock.rs @@ -19,6 +19,7 @@ use serde::Serialize; #[cfg_attr(feature = "structural_renderer", derive(Serialize))] #[allow(unused)] #[doc(hidden)] +#[derive(Clone, Copy, PartialEq, Eq)] pub enum MockProgramCollect { Foo, Bar, -- cgit