We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b60cefe commit 14d385bCopy full SHA for 14d385b
src/libstd/io/stdio.rs
@@ -655,6 +655,9 @@ impl Write for Stdout {
655
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> io::Result<()> {
656
self.lock().write_all_vectored(bufs)
657
}
658
+ fn write_fmt(&mut self, args: fmt::Arguments<'_>) -> io::Result<()> {
659
+ self.lock().write_fmt(args)
660
+ }
661
662
#[stable(feature = "rust1", since = "1.0.0")]
663
impl Write for StdoutLock<'_> {
@@ -835,6 +838,9 @@ impl Write for Stderr {
835
838
836
839
837
840
841
842
843
844
845
846
impl Write for StderrLock<'_> {
0 commit comments