pub trait Flush {
type Output;
// Required method
fn flush(&mut self) -> Self::Output;
}Expand description
A trait for objects which can flush written data on request.
This trait is used by IoWriter.
pub trait Flush {
type Output;
// Required method
fn flush(&mut self) -> Self::Output;
}A trait for objects which can flush written data on request.
This trait is used by IoWriter.