Method
show_graph_report
(&self, raw_name: S, graph: &FlowGraph)
Source from the content-addressed store, hash-verified
| 1110 | } |
| 1111 | |
| 1112 | fn show_graph_report<S: BnStrCompatible>(&self, raw_name: S, graph: &FlowGraph) { |
| 1113 | let raw_name = raw_name.into_bytes_with_nul(); |
| 1114 | unsafe { |
| 1115 | BNShowGraphReport( |
| 1116 | self.as_ref().handle, |
| 1117 | raw_name.as_ref().as_ptr() as *mut _, |
| 1118 | graph.handle, |
| 1119 | ); |
| 1120 | } |
| 1121 | } |
| 1122 | |
| 1123 | fn load_settings<S: BnStrCompatible>(&self, view_type_name: S) -> Result<Ref<Settings>> { |
| 1124 | let view_type_name = view_type_name.into_bytes_with_nul(); |