plotlib 0.3.0

Plotting data structures and tools
Documentation
use std::path::Path;

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