wasmtime-wasi 36.0.9

WASI implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::{DirPerms, FilePerms, OpenMode};

// TODO: implement
pub struct Dir;

impl Dir {
    #[expect(unused)]
    pub fn new(
        dir: cap_std::fs::Dir,
        perms: DirPerms,
        file_perms: FilePerms,
        open_mode: OpenMode,
        allow_blocking_current_thread: bool,
    ) -> Self {
        Self
    }
}