chore: made clippy happy about async seek implementation

This commit is contained in:
eliwas 2024-06-16 13:26:14 +02:00
parent aecba2b41e
commit 38137b632f

View file

@ -798,10 +798,11 @@ impl<R: AsyncRead + AsyncSeek + Unpin> StreamReader<R> {
// Cache the length for future calls.
*this.plaintext_len = Some(pt_len);
return Poll::Ready(Ok(pt_len));
Poll::Ready(Ok(pt_len))
}
}
#[cfg(feature = "async")]
#[derive(Debug)]
enum StreamSeekState {
NoSeek,