1use wasmer_derive::ValueType; 2 3#[derive(Debug, Copy, Clone, PartialEq, Eq, ValueType)] 4#[repr(C)] 5pub struct __wasi_asyncify_t<O> 6where 7 O: wasmer_types::ValueType, 8{ 9 pub start: O, 10 pub end: O, 11}