allow to access to inner type of Connect

This commit is contained in:
Nikolay Kim 2021-02-20 15:29:32 +06:00
parent c8a229422f
commit 0604045d03
3 changed files with 12 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.2.0-b.14] - 2021-02-20
* connect: Allow to access to inner type of Connect
## [0.2.0-b.13] - 2021-02-20
* http: Refactor date service

View file

@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "0.2.0-b.13"
version = "0.2.0-b.14"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"
@ -36,7 +36,7 @@ compress = ["flate2", "brotli2"]
cookie = ["coo-kie", "coo-kie/percent-encode"]
[dependencies]
ntex-codec = "0.3.0-b.1"
ntex-codec = "0.3.0"
ntex-rt = "0.1.2"
ntex-rt-macros = "0.1"
ntex-router = "0.3.8"

View file

@ -154,6 +154,11 @@ impl<T: Address> Connect<T> {
ConnectTakeAddrsIter { inner }
}
}
/// Return reference to inner type
pub fn get_ref(&self) -> &T {
&self.req
}
}
impl<T: Address> From<T> for Connect<T> {
@ -265,6 +270,7 @@ mod tests {
let mut connect = Connect::new("www.rust-lang.org");
assert_eq!(connect.host(), "www.rust-lang.org");
assert_eq!(connect.port(), 0);
assert_eq!(*connect.get_ref(), "www.rust-lang.org");
connect = connect.set_port(80);
assert_eq!(connect.port(), 80);