pub trait DataflowParent {
// Required method
fn inner_signature(&self) -> Cow<'_, Signature>;
}
Expand description
An operation that is the parent of a dataflow graph.
The children region contains an input and an output node matching the
signature returned by DataflowParent::inner_signature
.
Required Methods§
Sourcefn inner_signature(&self) -> Cow<'_, Signature>
fn inner_signature(&self) -> Cow<'_, Signature>
Signature of the inner dataflow graph.