Crate display_buffered

Source
Expand description

Provides convinience functions to write all the elements into a writer with buffering

Functions§

display_buffered
Writes all the items into the writer with buffering sepparating them with the new line
write_buffered
Writes all the bytes from values into the writer with buffering without any separators. Worth noting that values may also consist of String and &str and any other objects that can be turned into &u8 using as_ref method
write_buffered_separated
Writes all the elements from values into the writer with the provided separator. The separator isn’t written after the last element
write_buffered_separated_with
Writes all the elements from values into the writer with the computed separator. The separator isn’t written after the last element