pub trait OpParent {
    // Provided method
    fn inner_function_type(&self) -> Option<Signature> { ... }
}Expand description
Properties of child graphs of ops, if the op has children.
Provided Methods§
Sourcefn inner_function_type(&self) -> Option<Signature>
 
fn inner_function_type(&self) -> Option<Signature>
The inner function type of the operation, if it has a child dataflow sibling graph.
Non-container ops like FuncDecl return None even though they represent a function.