Struct parity_wasm::elements::DataSegment
[−]
[src]
pub struct DataSegment { /* fields omitted */ }Data segment definition.
Methods
impl DataSegment[src]
fn new(index: u32, offset: InitExpr, value: Vec<u8>) -> Self[src]
New data segments.
fn index(&self) -> u32[src]
Linear memory index (currently the only valid value is 0).
fn offset(&self) -> &InitExpr[src]
An i32 initializer expression that computes the offset at which to place the data.
fn offset_mut(&mut self) -> &mut InitExpr[src]
An i32 initializer expression that computes the offset at which to place the data (mutable)
fn value(&self) -> &[u8][src]
Initial value of the data segment.
fn value_mut(&mut self) -> &mut Vec<u8>[src]
Initial value of the data segment (mutable).
Trait Implementations
impl Deserialize for DataSegment[src]
type Error = Error
Serialization error produced by deserialization routine.
fn deserialize<R: Read>(reader: &mut R) -> Result<Self, Self::Error>[src]
Deserialize type from serial i/o