parity-wasm/search-index.js

5 lines
99 KiB
JavaScript
Raw Permalink Normal View History

2018-10-05 14:36:05 +00:00
var N = null;var searchIndex = {};
searchIndex["byteorder"]={"doc":"This crate provides convenience methods for encoding and decoding numbers in either [big-endian or little-endian order].","items":[[4,"BigEndian","byteorder","Defines big-endian serialization.",N,N],[4,"LittleEndian","","Defines little-endian serialization.",N,N],[6,"BE","","A type alias for [`BigEndian`].",N,N],[6,"LE","","A type alias for [`LittleEndian`].",N,N],[6,"NetworkEndian","","Defines network byte order serialization.",N,N],[6,"NativeEndian","","Defines system native-endian serialization.",N,N],[8,"ReadBytesExt","","Extends [`Read`] with methods for reading numbers. (For `std::io`.)",N,N],[11,"read_u8","","Reads an unsigned 8 bit integer from the underlying reader.",0,[[["self"]],["result",["u8"]]]],[11,"read_i8","","Reads a signed 8 bit integer from the underlying reader.",0,[[["self"]],["result",["i8"]]]],[11,"read_u16","","Reads an unsigned 16 bit integer from the underlying reader.",0,[[["self"]],["result",["u16"]]]],[11,"read_i16","","Reads a signed 16 bit integer from the underlying reader.",0,[[["self"]],["result",["i16"]]]],[11,"read_u24","","Reads an unsigned 24 bit integer from the underlying reader.",0,[[["self"]],["result",["u32"]]]],[11,"read_i24","","Reads a signed 24 bit integer from the underlying reader.",0,[[["self"]],["result",["i32"]]]],[11,"read_u32","","Reads an unsigned 32 bit integer from the underlying reader.",0,[[["self"]],["result",["u32"]]]],[11,"read_i32","","Reads a signed 32 bit integer from the underlying reader.",0,[[["self"]],["result",["i32"]]]],[11,"read_u48","","Reads an unsigned 48 bit integer from the underlying reader.",0,[[["self"]],["result",["u64"]]]],[11,"read_i48","","Reads a signed 48 bit integer from the underlying reader.",0,[[["self"]],["result",["i64"]]]],[11,"read_u64","","Reads an unsigned 64 bit integer from the underlying reader.",0,[[["self"]],["result",["u64"]]]],[11,"read_i64","","Reads a signed 64 bit integer from the underlying reader.",0,[[["self"]],["result",["i64"]]]],[11,"read_uint","","Reads an unsigned n-bytes integer from the underlying reader.",0,[[["self"],["usize"]],["result",["u64"]]]],[11,"read_int","","Reads a signed n-bytes integer from the underlying reader.",0,[[["self"],["usize"]],["result",["i64"]]]],[11,"read_f32","","Reads a IEEE754 single-precision (4 bytes) floating point number from the underlying reader.",0,[[["self"]],["result",["f32"]]]],[11,"read_f64","","Reads a IEEE754 double-precision (8 bytes) floating point number from the underlying reader.",0,[[["self"]],["result",["f64"]]]],[11,"read_u16_into","","Reads a sequence of unsigned 16 bit integers from the underlying reader.",0,N],[11,"read_u32_into","","Reads a sequence of unsigned 32 bit integers from the underlying reader.",0,N],[11,"read_u64_into","","Reads a sequence of unsigned 64 bit integers from the underlying reader.",0,N],[11,"read_i16_into","","Reads a sequence of signed 16 bit integers from the underlying reader.",0,N],[11,"read_i32_into","","Reads a sequence of signed 32 bit integers from the underlying reader.",0,N],[11,"read_i64_into","","Reads a sequence of signed 64 bit integers from the underlying reader.",0,N],[11,"read_f32_into","","Reads a sequence of IEEE754 single-precision (4 bytes) floating point numbers from the underlying reader.",0,N],[11,"read_f32_into_unchecked","","DEPRECATED.",0,N],[11,"read_f64_into","","Reads a sequence of IEEE754 double-precision (8 bytes) floating point numbers from the underlying reader.",0,N],[11,"read_f64_into_unchecked","","DEPRECATED.",0,N],[8,"WriteBytesExt","","Extends [`Write`] with methods for writing numbers. (For `std::io`.)",N,N],[11,"write_u8","","Writes an unsigned 8 bit integer to the underlying writer.",1,[[["self"],["u8"]],["result"]]],[11,"write_i8","","Writes a signed 8 bit integer to the underlying writer.",1,[[["self"],["i8"]],["result"]]],[11,"write_u16","","Writes an unsigned 16 bit integer to the underlying writer.",1,[[["self"],["u16"]],["result"]]],[11,"write_i16","","Writes a signed 16 bit integer to the underlying writer.",1,[[["self"],["i16"]],["result"]]],[1
searchIndex["parity_wasm"]={"doc":"WebAssembly format library","items":[[5,"peek_size","parity_wasm","Returns size of the module in the provided stream",N,N],[0,"elements","","Elements of the WebAssembly binary format.",N,N],[3,"Module","parity_wasm::elements","WebAssembly module",N,N],[3,"FunctionSection","","Section with function signatures definition.",N,N],[3,"CodeSection","","Section with function bodies of the module.",N,N],[3,"MemorySection","","Section with table definition (currently only one entry is allowed).",N,N],[3,"DataSection","","Data entries definitions.",N,N],[3,"ImportSection","","Section of the imports definition.",N,N],[3,"ExportSection","","List of exports definition.",N,N],[3,"GlobalSection","","Globals definition section.",N,N],[3,"TypeSection","","Section with type declarations",N,N],[3,"ElementSection","","Element entries section.",N,N],[3,"TableSection","","Section with table definition (currently only one is allowed).",N,N],[3,"CustomSection","","Custom section",N,N],[3,"ImportEntry","","Import entry.",N,N],[3,"ResizableLimits","","Memory limits",N,N],[3,"MemoryType","","Memory entry.",N,N],[3,"TableType","","Table entry",N,N],[3,"GlobalType","","Global definition struct",N,N],[3,"ExportEntry","","Export entry.",N,N],[3,"GlobalEntry","","Global entry in the module.",N,N],[3,"VarUint32","","Unsigned variable-length integer, limited to 32 bits, represented by at most 5 bytes that may contain padding 0x80 bytes.",N,N],[3,"VarUint7","","7-bit unsigned integer, encoded in LEB128 (always 1 byte length)",N,N],[3,"Uint8","","8-bit unsigned integer, NOT encoded in LEB128; it's just a single byte.",N,N],[3,"VarUint1","","VarUint1, 1-bit value (0/1)",N,N],[3,"VarInt7","","7-bit signed integer, encoded in LEB128 (always 1 byte length)",N,N],[3,"Uint32","","32-bit unsigned integer, encoded in little endian",N,N],[3,"VarInt32","","32-bit signed integer, encoded in LEB128 (can be 1-5 bytes length)",N,N],[3,"VarInt64","","64-bit signed integer, encoded in LEB128 (can be 1-9 bytes length)",N,N],[3,"Uint64","","64-bit unsigned integer, encoded in little endian",N,N],[3,"VarUint64","","Unsigned variable-length integer, limited to 64 bits, represented by at most 9 bytes that may contain padding 0x80 bytes.",N,N],[3,"CountedList","","List for reading sequence of elements typed `T`, given they are preceded by length (serialized as VarUint32)",N,N],[3,"CountedWriter","","Helper struct to write payload which is preceded by it's own length in bytes.",N,N],[3,"CountedListWriter","","Helper struct to write series of `T` preceded by the length of the sequence serialized as VarUint32",N,N],[12,"0","","",0,N],[12,"1","","",0,N],[3,"FunctionType","","Function signature type.",N,N],[3,"Instructions","","List of instructions (usually inside a block section).",N,N],[3,"InitExpr","","Initialization expression.",N,N],[3,"Func","","Function signature (type reference)",N,N],[3,"FuncBody","","Function body definition.",N,N],[3,"Local","","Local definition inside the function body.",N,N],[3,"ElementSegment","","Entry in the element section.",N,N],[3,"DataSegment","","Data segment definition.",N,N],[3,"IndexMap","","A map from non-contiguous `u32` keys to values of type `T`, which is serialized and deserialized ascending order of the keys. Normally used for relative dense maps with occasional \"holes\", and stored as an array.",N,N],[3,"ModuleNameSection","","The name of this module.",N,N],[3,"FunctionNameSection","","The names of the functions in this module.",N,N],[3,"LocalNameSection","","The names of the local variables in this module's functions.",N,N],[3,"RelocSection","","Relocation information.",N,N],[3,"Unparsed","","Unparsed part of the module/section",N,N],[12,"0","","",1,N],[4,"ImportCountType","","Type of the import entry to count",N,N],[13,"Function","","Count functions",2,N],[13,"Global","","Count globals",2,N],[13,"Table","","Count tables",2,N],[13,"Memory","","Count memories",2,N],[4,"Section","","Section in the WebAssembly module.",N,N],[13,"Unparsed","","Section is unparsed.",3,N],[12,"id","parity_wasm::elements:
initSearch(searchIndex);