Skip to main content

torsh_fx/
node.rs

1//! Graph node types
2
3pub enum NodeType {
4    Input,
5    Call,
6    GetAttr,
7    Output,
8}