Struct parity_wasm::elements::DataSegment
source · [−]pub struct DataSegment { /* private fields */ }
Expand description
Data segment definition.
Implementations
sourceimpl DataSegment
impl DataSegment
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
.
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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DataSegment) -> bool
fn ne(&self, other: &DataSegment) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more