Struct gear_wasm::elements::ElementSection
source · pub struct ElementSection(/* private fields */);
Expand description
Element entries section.
Implementations§
source§impl ElementSection
impl ElementSection
sourcepub fn with_entries(entries: Vec<ElementSegment>) -> Self
pub fn with_entries(entries: Vec<ElementSegment>) -> Self
New elements section.
sourcepub fn entries(&self) -> &[ElementSegment]
pub fn entries(&self) -> &[ElementSegment]
New elements entries in the section.
sourcepub fn entries_mut(&mut self) -> &mut Vec<ElementSegment>
pub fn entries_mut(&mut self) -> &mut Vec<ElementSegment>
List of all data entries in the section (mutable).
Trait Implementations§
source§impl Clone for ElementSection
impl Clone for ElementSection
source§fn clone(&self) -> ElementSection
fn clone(&self) -> ElementSection
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ElementSection
impl Debug for ElementSection
source§impl Default for ElementSection
impl Default for ElementSection
source§fn default() -> ElementSection
fn default() -> ElementSection
Returns the “default value” for a type. Read more
source§impl Deserialize for ElementSection
impl Deserialize for ElementSection
source§impl PartialEq for ElementSection
impl PartialEq for ElementSection
source§fn eq(&self, other: &ElementSection) -> bool
fn eq(&self, other: &ElementSection) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ElementSection
impl Serialize for ElementSection
impl StructuralPartialEq for ElementSection
Auto Trait Implementations§
impl RefUnwindSafe for ElementSection
impl Send for ElementSection
impl Sync for ElementSection
impl Unpin for ElementSection
impl UnwindSafe for ElementSection
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more