Enum dsntk_model::ItemDefinitionType
source · pub enum ItemDefinitionType {
SimpleType(FeelType),
ReferencedType(String, String),
ComponentType,
CollectionOfSimpleType(FeelType),
CollectionOfReferencedType(String, String),
CollectionOfComponentType,
FunctionType,
}Expand description
Item definition types.
Variants§
SimpleType(FeelType)
ReferencedType(String, String)
ComponentType
CollectionOfSimpleType(FeelType)
CollectionOfReferencedType(String, String)
CollectionOfComponentType
FunctionType
Trait Implementations§
source§impl Clone for ItemDefinitionType
impl Clone for ItemDefinitionType
source§fn clone(&self) -> ItemDefinitionType
fn clone(&self) -> ItemDefinitionType
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 Debug for ItemDefinitionType
impl Debug for ItemDefinitionType
source§impl PartialEq for ItemDefinitionType
impl PartialEq for ItemDefinitionType
source§fn eq(&self, other: &ItemDefinitionType) -> bool
fn eq(&self, other: &ItemDefinitionType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ItemDefinitionType
Auto Trait Implementations§
impl RefUnwindSafe for ItemDefinitionType
impl Send for ItemDefinitionType
impl Sync for ItemDefinitionType
impl Unpin for ItemDefinitionType
impl UnwindSafe for ItemDefinitionType
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