diff options
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 { |
