Type Alias wasmparser::Result
source · pub type Result<T, E = BinaryReaderError> = Result<T, E>;
Expand description
The result for BinaryReader
operations.
Aliased Type§
enum Result<T, E = BinaryReaderError> {
Ok(T),
Err(E),
}
pub type Result<T, E = BinaryReaderError> = Result<T, E>;
The result for BinaryReader
operations.
enum Result<T, E = BinaryReaderError> {
Ok(T),
Err(E),
}