Trait custom_print::Flush[][src]

pub trait Flush {
    type Output;
    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.

Associated Types

The resulting type after flushing.

Required methods

Performs flush.

Implementations on Foreign Types

Implementors