(
&self,
type_: BranchType,
target: &FlowGraphNode,
edge_style: EdgeStyle,
)
| 249 | // TODO: Add getters and setters for edges |
| 250 | |
| 251 | pub fn add_outgoing_edge( |
| 252 | &self, |
| 253 | type_: BranchType, |
| 254 | target: &FlowGraphNode, |
| 255 | edge_style: EdgeStyle, |
| 256 | ) { |
| 257 | unsafe { |
| 258 | BNAddFlowGraphNodeOutgoingEdge(self.handle, type_, target.handle, edge_style.into()) |
| 259 | } |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | unsafe impl RefCountable for FlowGraphNode { |