pub enum NxNodeType {
Empty,
Integer,
Float,
String,
Vector,
Bitmap,
Audio,
Invalid(u16),
}
Expand description
The type of a node.
Variants§
Trait Implementations§
Source§impl Clone for NxNodeType
impl Clone for NxNodeType
Source§fn clone(&self) -> NxNodeType
fn clone(&self) -> NxNodeType
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 NxNodeType
impl Debug for NxNodeType
Source§impl From<u16> for NxNodeType
impl From<u16> for NxNodeType
Source§impl PartialEq for NxNodeType
impl PartialEq for NxNodeType
impl Copy for NxNodeType
impl Eq for NxNodeType
impl StructuralPartialEq for NxNodeType
Auto Trait Implementations§
impl Freeze for NxNodeType
impl RefUnwindSafe for NxNodeType
impl Send for NxNodeType
impl Sync for NxNodeType
impl Unpin for NxNodeType
impl UnwindSafe for NxNodeType
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