pub trait IntoRequest {
type Node: FlowNodeBase;
// Required method
fn into_request(self) -> <Self::Node as FlowNodeBase>::Request;
}
Expand description
A “glue” trait which improves NodeCtx::req
ergonomics, by tying a
particular Request
type to its corresponding FlowNode
.
This trait should be autogenerated via flowey_request!
- do not try to
implement it manually!