pub enum ComplexDataElementOrigin<'types> {
Meta(&'types ElementMeta),
Generated(Box<ElementMeta>),
}
Expand description
Origin of a ComplexDataElement
.
Variants§
Meta(&'types ElementMeta)
The element was created from a corresponding ElementMeta
Generated(Box<ElementMeta>)
The element was generated as text element.
Trait Implementations§
Auto Trait Implementations§
impl<'types> Freeze for ComplexDataElementOrigin<'types>
impl<'types> RefUnwindSafe for ComplexDataElementOrigin<'types>
impl<'types> Send for ComplexDataElementOrigin<'types>
impl<'types> Sync for ComplexDataElementOrigin<'types>
impl<'types> Unpin for ComplexDataElementOrigin<'types>
impl<'types> UnwindSafe for ComplexDataElementOrigin<'types>
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