Struct parity_wasm::elements::DataSection
source · pub struct DataSection(_);
Expand description
Data entries definitions.
Implementations
sourceimpl DataSection
impl DataSection
sourcepub fn with_entries(entries: Vec<DataSegment>) -> Self
pub fn with_entries(entries: Vec<DataSegment>) -> Self
New data section.
sourcepub fn entries(&self) -> &[DataSegment]
pub fn entries(&self) -> &[DataSegment]
List of all data entries in the section.
sourcepub fn entries_mut(&mut self) -> &mut Vec<DataSegment>
pub fn entries_mut(&mut self) -> &mut Vec<DataSegment>
List of all data entries in the section (mutable).
Trait Implementations
sourceimpl Clone for DataSection
impl Clone for DataSection
sourcefn clone(&self) -> DataSection
fn clone(&self) -> DataSection
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 DataSection
impl Debug for DataSection
sourceimpl Default for DataSection
impl Default for DataSection
sourcefn default() -> DataSection
fn default() -> DataSection
Returns the “default value” for a type. Read more
sourceimpl Deserialize for DataSection
impl Deserialize for DataSection
sourceimpl PartialEq<DataSection> for DataSection
impl PartialEq<DataSection> for DataSection
sourcefn eq(&self, other: &DataSection) -> bool
fn eq(&self, other: &DataSection) -> bool
sourceimpl Serialize for DataSection
impl Serialize for DataSection
impl StructuralPartialEq for DataSection
Auto Trait Implementations
impl RefUnwindSafe for DataSection
impl Send for DataSection
impl Sync for DataSection
impl Unpin for DataSection
impl UnwindSafe for DataSection
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