pub enum ComplexContent {
Restriction(ComplexRestriction),
Extension(Extension),
}Expand description
Content of a complex type.
Variants§
Restriction(ComplexRestriction)
Complex restriction of some other type.
Extension(Extension)
Extension of some other type.
Trait Implementations§
Source§impl Clone for ComplexContent
impl Clone for ComplexContent
Source§fn clone(&self) -> ComplexContent
fn clone(&self) -> ComplexContent
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 ComplexContent
impl RefUnwindSafe for ComplexContent
impl Send for ComplexContent
impl Sync for ComplexContent
impl Unpin for ComplexContent
impl UnwindSafe for ComplexContent
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