We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8083b27 commit 67333a2Copy full SHA for 67333a2
lib/wasix/src/runtime/task_manager/mod.rs
@@ -38,6 +38,7 @@ pub type WasmResumeTrigger = dyn FnOnce() -> Pin<Box<dyn Future<Output = Result<
38
+ Sync;
39
40
/// The properties passed to the task
41
+#[derive(Debug)]
42
pub struct TaskWasmRunProperties {
43
pub ctx: WasiFunctionEnv,
44
pub store: Store,
lib/wasix/src/state/func_env.rs
@@ -19,7 +19,7 @@ use crate::{
19
const DEFAULT_STACK_SIZE: u64 = 1_048_576u64;
20
const DEFAULT_STACK_BASE: u64 = DEFAULT_STACK_SIZE;
21
22
-#[derive(Clone)]
+#[derive(Clone, Debug)]
23
pub struct WasiFunctionEnv {
24
pub env: FunctionEnv<WasiEnv>,
25
}
0 commit comments