plotlib 0.5.1

Pure Rust plotting library
Documentation
1
2
3
4
5
use std::path::Path;

pub trait Save {
    fn save<P>(&self, path: P) where P: AsRef<Path>;
}