pub enum NodeDataType {
Show 13 variants
Int,
UInt,
LongInt,
LongUInt,
Range,
RangeInclusive,
Boolean,
String,
Identifier,
List,
Variable,
Entity,
Array,
}
Variants§
Int
UInt
LongInt
LongUInt
Range
RangeInclusive
Boolean
String
Identifier
List
Variable
Entity
Array
Trait Implementations§
Source§impl Clone for NodeDataType
impl Clone for NodeDataType
Source§fn clone(&self) -> NodeDataType
fn clone(&self) -> NodeDataType
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 moreSource§impl Debug for NodeDataType
impl Debug for NodeDataType
Source§impl Display for NodeDataType
impl Display for NodeDataType
Source§impl Hash for NodeDataType
impl Hash for NodeDataType
Source§impl Ord for NodeDataType
impl Ord for NodeDataType
Source§fn cmp(&self, other: &NodeDataType) -> Ordering
fn cmp(&self, other: &NodeDataType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NodeDataType
impl PartialEq for NodeDataType
Source§impl PartialOrd for NodeDataType
impl PartialOrd for NodeDataType
impl Copy for NodeDataType
impl Eq for NodeDataType
impl StructuralPartialEq for NodeDataType
Auto Trait Implementations§
impl Freeze for NodeDataType
impl RefUnwindSafe for NodeDataType
impl Send for NodeDataType
impl Sync for NodeDataType
impl Unpin for NodeDataType
impl UnwindSafe for NodeDataType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.