gnuplot_wrapper/
command.rs

1
2
3
4
5
/// Interface for all commands
pub trait Command {
    /// Convert command to printable string
    fn to_raw(&self) -> String;
}