Struct wasm_encoder::DataSymbolDefinition
source · pub struct DataSymbolDefinition {
pub index: u32,
pub offset: u32,
pub size: u32,
}
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§
source§impl Clone for DataSymbolDefinition
impl Clone for DataSymbolDefinition
source§fn clone(&self) -> DataSymbolDefinition
fn clone(&self) -> DataSymbolDefinition
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more