Skip to content

Commit a1cd76e

Browse files
committed
cargo fmt
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
1 parent f3eba1f commit a1cd76e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/io/write/write_fmt.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ impl<T: Write + Unpin + ?Sized> Future for WriteFmtFuture<'_, T> {
2626
}
2727

2828
// Get the types from the future.
29-
let Self { writer, amt, buffer, .. } = &mut *self;
29+
let Self {
30+
writer,
31+
amt,
32+
buffer,
33+
..
34+
} = &mut *self;
3035
let mut buffer = buffer.as_mut().unwrap();
3136

3237
// Copy the data from the buffer into the writer until it's done.

0 commit comments

Comments
 (0)