mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
accept shared ref in some methods of framed::State type
This commit is contained in:
parent
45eeba274a
commit
c47ec4ae25
3 changed files with 7 additions and 3 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.2.0-b.5] - 2021-01-23
|
||||
|
||||
* accept shared ref in some methods of framed::State type
|
||||
|
||||
## [0.2.0-b.4] - 2021-01-23
|
||||
|
||||
* http: Refactor h1 dispatcher
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex"
|
||||
version = "0.2.0-b.4"
|
||||
version = "0.2.0-b.5"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "Framework for composable network services"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -374,7 +374,7 @@ impl State {
|
|||
pub async fn next<T, U>(
|
||||
&self,
|
||||
io: &mut T,
|
||||
codec: &mut U,
|
||||
codec: &U,
|
||||
) -> Result<Option<U::Item>, Either<U::Error, io::Error>>
|
||||
where
|
||||
T: AsyncRead + AsyncWrite + Unpin,
|
||||
|
@ -410,7 +410,7 @@ impl State {
|
|||
pub fn poll_next<T, U>(
|
||||
&self,
|
||||
io: &mut T,
|
||||
codec: &mut U,
|
||||
codec: &U,
|
||||
cx: &mut Context<'_>,
|
||||
) -> Poll<Result<Option<U::Item>, Either<U::Error, io::Error>>>
|
||||
where
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue