pub type ReencodeResult<T, E = Error> = Result<T, Error<E>>;
A Result type for use with wasm_encoder::reencode
Result
wasm_encoder::reencode
pub enum ReencodeResult<T, E = Error> { Ok(T), Err(Error<E>), }
Contains the success value
Contains the error value