pub trait Flush {
// Required method
fn flush_one(&mut self, display: String);
}
Expand description
Simple trait that allows an underlying implementation of Flush to perform some type of IO operation, i.e. writing to file, writing to stdout, etc