pub enum ElementContents {
SimpleType(Box<SimpleType>),
ComplexType(Box<ComplexType>),
}Expand description
Contents of an element.
Variants§
Trait Implementations§
Source§impl Clone for ElementContents
impl Clone for ElementContents
Source§fn clone(&self) -> ElementContents
fn clone(&self) -> ElementContents
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 moreAuto Trait Implementations§
impl Freeze for ElementContents
impl RefUnwindSafe for ElementContents
impl Send for ElementContents
impl Sync for ElementContents
impl Unpin for ElementContents
impl UnwindSafe for ElementContents
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