pub enum ComplexTypeContents {
Simple(SimpleContent),
Complex(ComplexContent),
}Expand description
Possible contents of a complex type.
Variants§
Trait Implementations§
Source§impl Clone for ComplexTypeContents
impl Clone for ComplexTypeContents
Source§fn clone(&self) -> ComplexTypeContents
fn clone(&self) -> ComplexTypeContents
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 ComplexTypeContents
impl RefUnwindSafe for ComplexTypeContents
impl Send for ComplexTypeContents
impl Sync for ComplexTypeContents
impl Unpin for ComplexTypeContents
impl UnwindSafe for ComplexTypeContents
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