File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " async-io-typed"
3- version = " 1.0.1 "
3+ version = " 1.0.2 "
44edition = " 2021"
55license = " MIT OR Apache-2.0"
66description = " Adapts any AsyncRead or AsyncWrite type to send serde compatible types"
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ fn bincode_options(size_limit: u64) -> impl Options {
167167 . reject_trailing_bytes ( )
168168}
169169
170- /// Provides the ability to read `serde` compatible types from any type that implements `tokio ::io::AsyncRead`.
170+ /// Provides the ability to read `serde` compatible types from any type that implements `futures ::io::AsyncRead`.
171171#[ derive( Debug ) ]
172172pub struct AsyncReadTyped < R , T : Serialize + DeserializeOwned + Unpin > {
173173 raw : R ,
@@ -380,7 +380,7 @@ enum LenReadMode {
380380 U64 ,
381381}
382382
383- /// Provides the ability to write `serde` compatible types to any type that implements `tokio ::io::AsyncWrite`.
383+ /// Provides the ability to write `serde` compatible types to any type that implements `futures ::io::AsyncWrite`.
384384#[ derive( Debug ) ]
385385pub struct AsyncWriteTyped < W : AsyncWrite + Unpin , T : Serialize + DeserializeOwned + Unpin > {
386386 raw : Option < W > ,
You can’t perform that action at this time.
0 commit comments