Struct buf_redux::policy::FlushOnNewline[][src]

pub struct FlushOnNewline;

Flush the buffer if it contains a newline (\n).

Equivalent to FlushOn(b'\n').

Trait Implementations

impl Debug for FlushOnNewline
[src]

Formats the value using the given formatter. Read more

impl Default for FlushOnNewline
[src]

Returns the "default value" for a type. Read more

impl WriterPolicy for FlushOnNewline
[src]

Return true if the buffer should be flushed after reading into it. Read more

Return FlushAmt(n > 0) if the buffer should be flushed before reading into it. If the returned amount is 0 or greater than the amount of buffered data, no flush is performed. Read more

Auto Trait Implementations