pub struct NodeContext {
pub input: Value,
pub config: Value,
pub state: HashMap<String, Value>,
}Expand description
Node execution context.
Fields§
§input: ValueInput data.
config: ValueNode configuration.
state: HashMap<String, Value>Shared workflow state.
Auto Trait Implementations§
impl Freeze for NodeContext
impl RefUnwindSafe for NodeContext
impl Send for NodeContext
impl Sync for NodeContext
impl Unpin for NodeContext
impl UnwindSafe for NodeContext
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