Skip to content

Commit 67333a2

Browse files
author
Michael-F-Bryan
committed
Added some more Debug implementations
1 parent 8083b27 commit 67333a2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/wasix/src/runtime/task_manager/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ pub type WasmResumeTrigger = dyn FnOnce() -> Pin<Box<dyn Future<Output = Result<
3838
+ Sync;
3939

4040
/// The properties passed to the task
41+
#[derive(Debug)]
4142
pub struct TaskWasmRunProperties {
4243
pub ctx: WasiFunctionEnv,
4344
pub store: Store,

lib/wasix/src/state/func_env.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ use crate::{
1919
const DEFAULT_STACK_SIZE: u64 = 1_048_576u64;
2020
const DEFAULT_STACK_BASE: u64 = DEFAULT_STACK_SIZE;
2121

22-
#[derive(Clone)]
22+
#[derive(Clone, Debug)]
2323
pub struct WasiFunctionEnv {
2424
pub env: FunctionEnv<WasiEnv>,
2525
}

0 commit comments

Comments
 (0)