1pub trait WasmWrapper<T> {
2/// Get a reference to the inner type (Rust struct)
3fn inner(&self) -> &T;
45/// Consume the wrapper and return the inner type
6fn into_inner(self) -> T;
78/// Create a new wrapper from the inner type
9fn from_inner(inner: T) -> Self;
10}