[][src]Struct susy_wasm::elements::ElementSegment

pub struct ElementSegment { /* fields omitted */ }

Entry in the element section.

Methods

impl ElementSegment[src]

pub fn new(index: u32, offset: InitExpr, members: Vec<u32>) -> Self[src]

New element segment.

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

Sequence of function indices.

pub fn members_mut(&mut self) -> &mut Vec<u32>[src]

Sequence of function indices (mutable)

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

Table index (currently valid only value of 0)

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

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

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

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

Trait Implementations

impl Deserialize for ElementSegment[src]

type Error = Error

Serialization error produced by deserialization routine.

impl Serialize for ElementSegment[src]

type Error = Error

Serialization error produced by serialization routine.

impl PartialEq<ElementSegment> for ElementSegment[src]

impl Clone for ElementSegment[src]

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

Performs copy-assignment from source. Read more

impl Debug for ElementSegment[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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, 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]