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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DataSection) -> bool
fn ne(&self, other: &DataSection) -> bool
This method tests for !=
.
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 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