We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 356dc8b commit 93ee7b1Copy full SHA for 93ee7b1
src/reader.rs
@@ -73,6 +73,8 @@ impl AsyncFileReader for Box<dyn AsyncFileReader + '_> {
73
/// This wrapper is needed because `AsyncRead` and `AsyncSeek` require mutable access to seek and
74
/// read data, while the `AsyncFileReader` trait requires immutable access to read data.
75
///
76
+/// This wrapper stores the inner reader in a `Mutex`.
77
+///
78
/// [AsyncRead]: tokio::io::AsyncRead
79
/// [AsyncSeek]: tokio::io::AsyncSeek
80
#[cfg(feature = "tokio")]
0 commit comments