Make WriteFmtFuture must_use

Fixes #627. Thanks to @jebrosen for pointing out the location of the issue.
split-by-pattern
Fenhl 5 years ago committed by GitHub
parent 83a488b290
commit 07eb2c1280
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,6 +6,7 @@ use crate::task::{Context, Poll};
#[doc(hidden)]
#[allow(missing_debug_implementations)]
#[must_use]
pub struct WriteFmtFuture<'a, T: Unpin + ?Sized> {
pub(crate) writer: &'a mut T,
pub(crate) res: Option<io::Result<Vec<u8>>>,

Loading…
Cancel
Save