From 81308b65e3bdc15d6509aceb849be533d443900a Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 28 Jan 2024 18:56:33 +0100 Subject: [PATCH] Add missing clone derive --- lib/runtime.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/runtime.rs b/lib/runtime.rs index b92cdc2..49a1a0c 100644 --- a/lib/runtime.rs +++ b/lib/runtime.rs @@ -35,6 +35,7 @@ Lua state runtime metadata was unexpectedly removed!\ /** A runtime for running Lua threads and async tasks. */ +#[derive(Clone)] pub struct Runtime<'lua> { lua: &'lua Lua, queue_spawn: SpawnedThreadQueue,