pub struct TriggerlessGraphEntry {
pub name: &'static str,
pub constructor: fn() -> TriggerlessGraphRegistration,
}Expand description
Trigger-less computation graph entry emitted by #[computation_graph]
for graphs declared without a trigger = reactor(...) clause. These
graphs operate on Context<Value> rather than InputCache and are
invoked directly by workflow tasks. (T-0552 — relocated from cloacina.)
Fields§
§name: &'static str§constructor: fn() -> TriggerlessGraphRegistrationTrait Implementations§
impl Collect for TriggerlessGraphEntry
Auto Trait Implementations§
impl Freeze for TriggerlessGraphEntry
impl RefUnwindSafe for TriggerlessGraphEntry
impl Send for TriggerlessGraphEntry
impl Sync for TriggerlessGraphEntry
impl Unpin for TriggerlessGraphEntry
impl UnsafeUnpin for TriggerlessGraphEntry
impl UnwindSafe for TriggerlessGraphEntry
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