(&self)
| 208 | env!("CARGO_PKG_VERSION").into() |
| 209 | } |
| 210 | fn commands(&self) -> Vec<Box<dyn nu_plugin::PluginCommand<Plugin = Self>>> { |
| 211 | vec![ |
| 212 | Box::new(CommandPlot), Box::new(CommandHist), Box::new(CommandXyplot) |
| 213 | ] |
| 214 | } |
| 215 | } |
| 216 | |
| 217 | trait Plotter { |
nothing calls this directly
no outgoing calls
no test coverage detected