[−][src]Struct parity_wasm::elements::ElementSegment
Entry in the element section.
Methods
impl ElementSegment
[src]
pub fn new(
index: u32,
offset: Option<InitExpr>,
members: Vec<u32>,
passive: bool
) -> Self
[src]
index: u32,
offset: Option<InitExpr>,
members: Vec<u32>,
passive: bool
) -> Self
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) -> &Option<InitExpr>
[src]
An i32 initializer expression that computes the offset at which to place the elements.
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 elements (mutable)
Note that this return None
if the segment is passive
.
pub fn passive(&self) -> bool
[src]
Whether or not this table element is "passive"
pub fn passive_mut(&mut self) -> &mut bool
[src]
Whether or not this table element is "passive"
Trait Implementations
impl Deserialize for ElementSegment
[src]
type Error = Error
Serialization error produced by deserialization routine.
fn deserialize<R: Read>(reader: &mut R) -> Result<Self, Self::Error>
[src]
impl Serialize for ElementSegment
[src]
type Error = Error
Serialization error produced by serialization routine.
fn serialize<W: Write>(self, writer: &mut W) -> Result<(), Self::Error>
[src]
impl PartialEq<ElementSegment> for ElementSegment
[src]
fn eq(&self, other: &ElementSegment) -> bool
[src]
fn ne(&self, other: &ElementSegment) -> bool
[src]
impl Clone for ElementSegment
[src]
fn clone(&self) -> 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
impl Send for ElementSegment
impl Sync for ElementSegment
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Rfn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,