[][src]Struct parity_wasm::elements::DataSegment

pub struct DataSegment { /* fields omitted */ }

Data segment definition.

Methods

impl DataSegment[src]

pub fn new(
    index: u32,
    offset: Option<InitExpr>,
    value: Vec<u8>,
    passive: bool
) -> Self
[src]

New data segments.

pub fn index(&self) -> u32[src]

Linear memory index (currently the only valid value is 0).

pub fn offset(&self) -> &Option<InitExpr>[src]

An i32 initializer expression that computes the offset at which to place the data.

Note that this return None if the segment is passive.

pub fn offset_mut(&mut self) -> &mut Option<InitExpr>[src]

An i32 initializer expression that computes the offset at which to place the data (mutable)

Note that this return None if the segment is passive.

Important traits for &'_ [u8]
pub fn value(&self) -> &[u8][src]

Initial value of the data segment.

Important traits for Vec<u8>
pub fn value_mut(&mut self) -> &mut Vec<u8>[src]

Initial value of the data segment (mutable).

pub fn passive(&self) -> bool[src]

Whether or not this data segment is "passive".

pub fn passive_mut(&mut self) -> &mut bool[src]

Whether or not this data segment is "passive" (mutable).

Trait Implementations

impl Deserialize for DataSegment[src]

type Error = Error

Serialization error produced by deserialization routine.

impl Serialize for DataSegment[src]

type Error = Error

Serialization error produced by serialization routine.

impl PartialEq<DataSegment> for DataSegment[src]

impl Clone for DataSegment[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DataSegment[src]

Auto Trait Implementations

impl Send for DataSegment

impl Sync for DataSegment

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]