mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57:39 +03:00
make AndThenFactory::new public
This commit is contained in:
parent
f1bffbbe52
commit
0f28860fed
3 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.3.3] - 2022-07-08
|
||||||
|
|
||||||
|
* Revert cleanups
|
||||||
|
|
||||||
## [0.3.2] - 2022-07-07
|
## [0.3.2] - 2022-07-07
|
||||||
|
|
||||||
* Add ?Sized to Rc service #125
|
* Add ?Sized to Rc service #125
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-service"
|
name = "ntex-service"
|
||||||
version = "0.3.1"
|
version = "0.3.3"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "ntex service"
|
description = "ntex service"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
|
|
@ -138,7 +138,7 @@ where
|
||||||
Cfg: Clone,
|
Cfg: Clone,
|
||||||
{
|
{
|
||||||
/// Create new `AndThenFactory` combinator
|
/// Create new `AndThenFactory` combinator
|
||||||
pub(crate) fn new(a: A, b: B) -> Self {
|
pub fn new(a: A, b: B) -> Self {
|
||||||
Self {
|
Self {
|
||||||
inner: Rc::new((a, b)),
|
inner: Rc::new((a, b)),
|
||||||
_t: PhantomData,
|
_t: PhantomData,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue