Skip to content

Commit 2305dc0

Browse files
committed
Add a blanket impl for &mut std::fmt::Write
There is already a corresponding impl for `std::io::Write`. This change will make the two traits more consistent.
1 parent 50a6c79 commit 2305dc0

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/libcore/fmt/mod.rs

+15
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,21 @@ pub trait Write {
121121
}
122122
}
123123

124+
#[stable(feature = "fmt_write_blanket_impl", since = "1.4.0")]
125+
impl<'a, W: Write + ?Sized> Write for &'a mut W {
126+
fn write_str(&mut self, s: &str) -> Result {
127+
(**self).write_str(s)
128+
}
129+
130+
fn write_char(&mut self, c: char) -> Result {
131+
(**self).write_char(c)
132+
}
133+
134+
fn write_fmt(&mut self, args: Arguments) -> Result {
135+
(**self).write_fmt(args)
136+
}
137+
}
138+
124139
/// A struct to represent both where to emit formatting strings to and how they
125140
/// should be formatted. A mutable version of this is passed to all formatting
126141
/// traits.

0 commit comments

Comments
 (0)