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 duplicate 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 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
Auto Trait Implementations§
impl Freeze for ElementSection
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