1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::sync::Arc;

use indexmap::IndexMap;

pub struct WasiEnumeration {
    pub name: Arc<str>,
    pub wasi_name: String,
    pub variants: IndexMap<Arc<str>, WasiEnumerationItem>,
}

pub struct WasiEnumerationItem {
    pub name: Arc<str>,
    pub wasi_name: String,
}