pub enum LibraryItem<'a> {
Name(MultilingualTextRef<'a>),
DataTemplate(DataTemplateRef<'a>),
ObjectType(ConceptRef<'a>),
GroupOfProperties(ConceptRef<'a>),
Property(PropertyRef<'a>),
Unit(ConceptRef<'a>),
Dimension(ConceptRef<'a>),
QuantityKind(ConceptRef<'a>),
ReferenceDocument(ConceptRef<'a>),
Extension(&'a Element),
}Expand description
One child retained by a library, including forward-compatible extensions.
Variants§
Name(MultilingualTextRef<'a>)
DataTemplate(DataTemplateRef<'a>)
ObjectType(ConceptRef<'a>)
GroupOfProperties(ConceptRef<'a>)
Property(PropertyRef<'a>)
Unit(ConceptRef<'a>)
Dimension(ConceptRef<'a>)
QuantityKind(ConceptRef<'a>)
ReferenceDocument(ConceptRef<'a>)
Extension(&'a Element)
Trait Implementations§
Source§impl<'a> Clone for LibraryItem<'a>
impl<'a> Clone for LibraryItem<'a>
Source§fn clone(&self) -> LibraryItem<'a>
fn clone(&self) -> LibraryItem<'a>
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 moreSource§impl<'a> Debug for LibraryItem<'a>
impl<'a> Debug for LibraryItem<'a>
impl<'a> Copy for LibraryItem<'a>
Auto Trait Implementations§
impl<'a> Freeze for LibraryItem<'a>
impl<'a> RefUnwindSafe for LibraryItem<'a>
impl<'a> Send for LibraryItem<'a>
impl<'a> Sync for LibraryItem<'a>
impl<'a> Unpin for LibraryItem<'a>
impl<'a> UnwindSafe for LibraryItem<'a>
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