mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57: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
|
# 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
|
## [0.2.0-b.4] - 2021-01-23
|
||||||
|
|
||||||
* http: Refactor h1 dispatcher
|
* http: Refactor h1 dispatcher
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex"
|
name = "ntex"
|
||||||
version = "0.2.0-b.4"
|
version = "0.2.0-b.5"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Framework for composable network services"
|
description = "Framework for composable network services"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
|
@ -374,7 +374,7 @@ impl State {
|
||||||
pub async fn next<T, U>(
|
pub async fn next<T, U>(
|
||||||
&self,
|
&self,
|
||||||
io: &mut T,
|
io: &mut T,
|
||||||
codec: &mut U,
|
codec: &U,
|
||||||
) -> Result<Option<U::Item>, Either<U::Error, io::Error>>
|
) -> Result<Option<U::Item>, Either<U::Error, io::Error>>
|
||||||
where
|
where
|
||||||
T: AsyncRead + AsyncWrite + Unpin,
|
T: AsyncRead + AsyncWrite + Unpin,
|
||||||
|
@ -410,7 +410,7 @@ impl State {
|
||||||
pub fn poll_next<T, U>(
|
pub fn poll_next<T, U>(
|
||||||
&self,
|
&self,
|
||||||
io: &mut T,
|
io: &mut T,
|
||||||
codec: &mut U,
|
codec: &U,
|
||||||
cx: &mut Context<'_>,
|
cx: &mut Context<'_>,
|
||||||
) -> Poll<Result<Option<U::Item>, Either<U::Error, io::Error>>>
|
) -> Poll<Result<Option<U::Item>, Either<U::Error, io::Error>>>
|
||||||
where
|
where
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue