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