RuntimeReturnValues should derive Debug (#309)

This commit is contained in:
Sasial 2025-04-27 06:51:17 +10:00 committed by GitHub
parent e234eab813
commit 1f43ff89f7
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -14,6 +14,7 @@ use super::{RuntimeError, RuntimeResult};
/** /**
Values returned by running a Lune runtime until completion. Values returned by running a Lune runtime until completion.
*/ */
#[derive(Debug)]
#[non_exhaustive] #[non_exhaustive]
pub struct RuntimeReturnValues { pub struct RuntimeReturnValues {
/// The exit code manually returned from the runtime, if any. /// The exit code manually returned from the runtime, if any.