Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
link2xt committed Oct 12, 2024
1 parent 5103d50 commit b1878b8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/extensions/compress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ impl<T: Read + Write + Unpin + fmt::Debug> DeflateStream<T> {

/// Gets a pinned mutable reference to the underlying stream.
pub fn get_pin_mut(self: Pin<&mut Self>) -> Pin<&mut T> {
self.project().inner.get_pin_mut().get_pin_mut().get_pin_mut()
self.project()
.inner
.get_pin_mut()
.get_pin_mut()
.get_pin_mut()
}

/// Consumes `DeflateStream` and returns underlying stream.
Expand Down

0 comments on commit b1878b8

Please sign in to comment.