| 215 | } |
| 216 | |
| 217 | trait Plotter { |
| 218 | fn plot( |
| 219 | &self, |
| 220 | call: &EvaluatedCall, |
| 221 | input: &Value, |
| 222 | ) -> Result<Value, LabeledError>; |
| 223 | fn plot_nested( |
| 224 | &self, |
| 225 | call: &EvaluatedCall, |
| 226 | input: &Value, |
| 227 | ) -> Result<Value, LabeledError>; |
| 228 | } |
| 229 | |
| 230 | impl Plotter for CommandPlot { |
| 231 | fn plot( |
nothing calls this directly
no outgoing calls
no test coverage detected