Struct wasm_encoder::DataSymbolDefinition [−][src]
Expand description
The definition of a data symbol within a symbol table.
Fields
index: u32
The index of the data segment that this symbol is in.
offset: u32
The offset of this symbol within its segment.
size: u32
The byte size (which can be zero) of this data symbol.
Note that offset + size
must be less than or equal to the segment’s
size.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DataSymbolDefinition
impl Send for DataSymbolDefinition
impl Sync for DataSymbolDefinition
impl Unpin for DataSymbolDefinition
impl UnwindSafe for DataSymbolDefinition
Blanket Implementations
Mutably borrows from an owned value. Read more