pub struct TriggerlessGraphRegistration {
pub name: String,
pub graph_fn: TriggerlessGraphFn,
pub terminal_node_names: Vec<String>,
}Expand description
Runtime-side description of a trigger-less computation graph.
Fields§
§name: StringGraph name (the macro’s mod name).
graph_fn: TriggerlessGraphFnCompiled graph function.
terminal_node_names: Vec<String>Names of every terminal node in declaration order. Workflow-task invocation writes each terminal output into the post-invocation context under the matching name.
Auto Trait Implementations§
impl Freeze for TriggerlessGraphRegistration
impl !RefUnwindSafe for TriggerlessGraphRegistration
impl Send for TriggerlessGraphRegistration
impl Sync for TriggerlessGraphRegistration
impl Unpin for TriggerlessGraphRegistration
impl UnsafeUnpin for TriggerlessGraphRegistration
impl !UnwindSafe for TriggerlessGraphRegistration
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