pub struct ElementList {
pub children: Vec<Element>,
}Expand description
A collection of elements
Fields§
§children: Vec<Element>Implementations§
Trait Implementations§
Source§impl Clone for ElementList
impl Clone for ElementList
Source§fn clone(&self) -> ElementList
fn clone(&self) -> ElementList
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 Debug for ElementList
impl Debug for ElementList
Source§impl Default for ElementList
impl Default for ElementList
Source§fn default() -> ElementList
fn default() -> ElementList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ElementList
impl<'de> Deserialize<'de> for ElementList
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ElementList
impl RefUnwindSafe for ElementList
impl Send for ElementList
impl Sync for ElementList
impl Unpin for ElementList
impl UnwindSafe for ElementList
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