cargo fmt

This commit is contained in:
James Wilson
2021-08-12 11:21:36 +01:00
parent 9017f328f0
commit 230987036a
8 changed files with 70 additions and 44 deletions
+3 -1
View File
@@ -60,7 +60,9 @@ impl Sender {
Ok(())
}
/// Convert this sender into a Sink
pub fn into_sink(self) -> impl futures::Sink<SentMessage> + std::marker::Unpin + Clone + 'static {
pub fn into_sink(
self,
) -> impl futures::Sink<SentMessage> + std::marker::Unpin + Clone + 'static {
self.inner.into_sink()
}
}