mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 11:27:43 +03:00
chore: made clippy happy about async seek implementation
This commit is contained in:
parent
aecba2b41e
commit
38137b632f
1 changed files with 2 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue