diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-29 00:52:16 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-29 00:52:28 +0800 |
| commit | db9afa0b06355028eafe3bc29fe0b2429ba8fd0a (patch) | |
| tree | 60bf74d0853fcc0c1e9363813c26109a6ca38a4f /mingling/src/any.rs | |
| parent | 7ce68cd11516bd7cf037ecea99a92aee7c31b2c3 (diff) | |
Completed the first preliminary usable version of the Mingling
framework.
Diffstat (limited to 'mingling/src/any.rs')
| -rw-r--r-- | mingling/src/any.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mingling/src/any.rs b/mingling/src/any.rs index a74cd54..5ff8cfe 100644 --- a/mingling/src/any.rs +++ b/mingling/src/any.rs @@ -8,7 +8,7 @@ pub type ChainProcess = Result<AnyOutput, ChainProcessError>; #[derive(Debug)] pub struct AnyOutput { inner: Box<dyn std::any::Any + Send + 'static>, - type_id: std::any::TypeId, + pub type_id: std::any::TypeId, } impl AnyOutput { |
