mirror of
https://github.com/fluencelabs/parity-wasm
synced 2025-07-02 16:12:03 +00:00
flow args passing
This commit is contained in:
@ -14,6 +14,7 @@ pub use self::import_entry::{ImportEntry, MemoryType, TableType, External};
|
||||
pub use self::export_entry::{ExportEntry, Internal};
|
||||
pub use self::primitives::{VarUint32, VarUint7, VarUint1, VarInt7, Uint32, CountedList};
|
||||
pub use self::types::{ValueType, BlockType};
|
||||
pub use self::ops::{Opcode, Opcodes};
|
||||
|
||||
pub trait Deserialize : Sized {
|
||||
type Error;
|
||||
@ -30,6 +31,7 @@ pub enum Error {
|
||||
NonUtf8String,
|
||||
UnknownExternalKind(u8),
|
||||
UnknownInternalKind(u8),
|
||||
UnknownOpcode(u8),
|
||||
}
|
||||
|
||||
impl From<io::Error> for Error {
|
||||
|
Reference in New Issue
Block a user