pub enum ComplexContent {
Groups(Vec<Group>),
Extension {
base: String,
extra: Vec<Group>,
},
}Variants§
Groups(Vec<Group>)
The compositors declared directly on the type. A type with no content model has none.
Extension
Trait Implementations§
Source§impl Clone for ComplexContent
impl Clone for ComplexContent
Source§fn clone(&self) -> ComplexContent
fn clone(&self) -> ComplexContent
Returns a copy 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