pub enum NodeKind {
Source,
Projection(ProjectionSpec),
Transform(TransformType),
Sink(SinkSpec),
Combine(CombinerType),
Conditional,
Constant,
}Expand description
The kind of computation a node performs.
Variants§
Source
Input source (geometric state)
Projection(ProjectionSpec)
Projection from geometric state to value
Transform(TransformType)
Geometric transformation
Sink(SinkSpec)
Output sink (DOM update)
Combine(CombinerType)
Combine multiple inputs
Conditional
Conditional (switch between inputs)
Constant
Constant value
Trait Implementations§
impl StructuralPartialEq for NodeKind
Auto Trait Implementations§
impl Freeze for NodeKind
impl RefUnwindSafe for NodeKind
impl Send for NodeKind
impl Sync for NodeKind
impl Unpin for NodeKind
impl UnsafeUnpin for NodeKind
impl UnwindSafe for NodeKind
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