pub type Result<T, E = Error> = Result<T, E>;
A Result type that is either Ok(T) or Err(wasm_mutate::Error).
Result
Ok(T)
Err(wasm_mutate::Error)