pub trait GraphMaker {
    fn get_buffer<'a>(&'a self) -> &'a String;
    fn clear_buffer(&mut self);
}
Expand description

Defines the trait used by Plot to add graph entities

Required Methods

Returns the text buffer with Python3 commands

Clear the text buffer with Python commands

Implementors