wasibox-core 1.0.4

A collection of core utilities optimized for WASI
Documentation
1
2
3
4
5
6
7
8
9
use std::ffi::OsString;

pub fn execute<I, T>(_args: I) -> Result<(), String>
where
    I: IntoIterator<Item = T>,
    T: Into<OsString> + Clone,
{
    Err("".to_string())
}