From 1f43ff89f7350172cd3a6d5f3c12b57331f31256 Mon Sep 17 00:00:00 2001 From: Sasial <44125644+sasial-dev@users.noreply.github.com> Date: Sun, 27 Apr 2025 06:51:17 +1000 Subject: [PATCH] `RuntimeReturnValues` should derive `Debug` (#309) --- crates/lune/src/rt/runtime.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/lune/src/rt/runtime.rs b/crates/lune/src/rt/runtime.rs index 7c45355..cf2f0fc 100644 --- a/crates/lune/src/rt/runtime.rs +++ b/crates/lune/src/rt/runtime.rs @@ -14,6 +14,7 @@ use super::{RuntimeError, RuntimeResult}; /** Values returned by running a Lune runtime until completion. */ +#[derive(Debug)] #[non_exhaustive] pub struct RuntimeReturnValues { /// The exit code manually returned from the runtime, if any.