From f831e1c8462af8fd118daad4963a4bb1080140be Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Wed, 25 Jan 2023 17:12:15 +0100 Subject: [PATCH] VMInstance cannot be Clone --- lib/vm/src/instance/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vm/src/instance/mod.rs b/lib/vm/src/instance/mod.rs index cb0d38f3291..bfc62fca674 100644 --- a/lib/vm/src/instance/mod.rs +++ b/lib/vm/src/instance/mod.rs @@ -1023,7 +1023,7 @@ impl Instance { /// /// This is more or less a public facade of the private `Instance`, /// providing useful higher-level API. -#[derive(Debug, Clone, Eq, PartialEq)] +#[derive(Debug, Eq, PartialEq)] pub struct VMInstance { /// The layout of `Instance` (which can vary). instance_layout: Layout,