Struct parity_wasm::elements::DataSegment
source · pub struct DataSegment { /* private fields */ }
Expand description
Data segment definition.
Implementations
sourceimpl DataSegment
impl DataSegment
sourcepub fn new(
index: u32,
offset: Option<InitExpr>,
value: Vec<u8>,
passive: bool
) -> Self
pub fn new(
index: u32,
offset: Option<InitExpr>,
value: Vec<u8>,
passive: bool
) -> Self
New data segments.
sourcepub fn offset(&self) -> &Option<InitExpr>
pub fn offset(&self) -> &Option<InitExpr>
An i32 initializer expression that computes the offset at which to place the data.
Note that this return None
if the segment is passive
.
sourcepub fn offset_mut(&mut self) -> &mut Option<InitExpr>
pub fn offset_mut(&mut self) -> &mut Option<InitExpr>
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
.
sourcepub fn value(&self) -> &[u8]ⓘNotable traits for &mut [u8]impl Write for &mut [u8]impl Read for &[u8]
pub fn value(&self) -> &[u8]ⓘNotable traits for &mut [u8]impl Write for &mut [u8]impl Read for &[u8]
Initial value of the data segment.
sourcepub fn passive_mut(&mut self) -> &mut bool
pub fn passive_mut(&mut self) -> &mut bool
Whether or not this data segment is “passive” (mutable).
Trait Implementations
sourceimpl Clone for DataSegment
impl Clone for DataSegment
sourcefn clone(&self) -> DataSegment
fn clone(&self) -> DataSegment
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DataSegment
impl Debug for DataSegment
sourceimpl Deserialize for DataSegment
impl Deserialize for DataSegment
sourceimpl PartialEq<DataSegment> for DataSegment
impl PartialEq<DataSegment> for DataSegment
sourcefn eq(&self, other: &DataSegment) -> bool
fn eq(&self, other: &DataSegment) -> bool
sourceimpl Serialize for DataSegment
impl Serialize for DataSegment
impl StructuralPartialEq for DataSegment
Auto Trait Implementations
impl RefUnwindSafe for DataSegment
impl Send for DataSegment
impl Sync for DataSegment
impl Unpin for DataSegment
impl UnwindSafe for DataSegment
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more