pub enum NodeOutput {
LazyCode(String, String, DataType),
Compiled(CompiledValue),
}Variants§
LazyCode(String, String, DataType)
Only generated if it is used.
Compiled(CompiledValue)
Already generated, so reference the variable.
Trait Implementations§
Source§impl Clone for NodeOutput
impl Clone for NodeOutput
Source§fn clone(&self) -> NodeOutput
fn clone(&self) -> NodeOutput
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 moreAuto Trait Implementations§
impl Freeze for NodeOutput
impl RefUnwindSafe for NodeOutput
impl Send for NodeOutput
impl Sync for NodeOutput
impl Unpin for NodeOutput
impl UnsafeUnpin for NodeOutput
impl UnwindSafe for NodeOutput
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