aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-08-14 00:26:09 +0800
committer魏曹先生 <1992414357@qq.com>2026-08-14 00:26:09 +0800
commit0b236d0c73da51ccde3cfe442db8c47ce521d262 (patch)
tree58e6f1fc99967e4a1e0993b2865907a8635c0a12 /mingling_core/src
parent1198f2b81a845bd475594cdf42d04e7bd750ebd2 (diff)
feat(collection): add Display impl for MockProgramCollect
Diffstat (limited to 'mingling_core/src')
-rw-r--r--mingling_core/src/program/collection/mock.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/mingling_core/src/program/collection/mock.rs b/mingling_core/src/program/collection/mock.rs
index ad8ba0a..568d141 100644
--- a/mingling_core/src/program/collection/mock.rs
+++ b/mingling_core/src/program/collection/mock.rs
@@ -24,6 +24,12 @@ pub enum MockProgramCollect {
Bar,
}
+impl std::fmt::Display for MockProgramCollect {
+ fn fmt(&self, _f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
+ todo!()
+ }
+}
+
/// SAFETY: This is a mock type used only for temporary testing.
/// It will never actually enter the macro system.
/// The internal `panic!` ensures that `member_id` will never be executed.