@@ -20,6 +20,7 @@ use crate::common::exec::{ConnStreamExec, NewSvcExec};
20
20
use crate :: common:: { task, Future , Pin , Poll , Unpin } ;
21
21
// Renamed `Http` as `Http_` for now so that people upgrading don't see an
22
22
// error that `hyper::server::Http` is private...
23
+ #[ cfg_attr( feature = "deprecated" , allow( deprecated) ) ]
23
24
use super :: conn:: { Connection , Http as Http_ , UpgradeableConnection } ;
24
25
use super :: shutdown:: { Graceful , GracefulWatcher } ;
25
26
use crate :: service:: { HttpService , MakeServiceRef } ;
@@ -33,6 +34,7 @@ pin_project! {
33
34
/// handlers. It is built using the [`Builder`](Builder), and the future
34
35
/// completes when the server has been shutdown. It should be run by an
35
36
/// `Executor`.
37
+ #[ cfg_attr( feature = "deprecated" , allow( deprecated) ) ]
36
38
pub struct Server <I , S , E = Exec > {
37
39
#[ pin]
38
40
incoming: I ,
@@ -44,6 +46,7 @@ pin_project! {
44
46
/// A builder for a [`Server`](Server).
45
47
#[ derive( Debug ) ]
46
48
#[ cfg_attr( docsrs, doc( cfg( any( feature = "http1" , feature = "http2" ) ) ) ) ]
49
+ #[ cfg_attr( feature = "deprecated" , allow( deprecated) ) ]
47
50
pub struct Builder < I , E = Exec > {
48
51
incoming : I ,
49
52
protocol : Http_ < E > ,
@@ -52,6 +55,7 @@ pub struct Builder<I, E = Exec> {
52
55
// ===== impl Server =====
53
56
54
57
#[ cfg_attr( docsrs, doc( cfg( any( feature = "http1" , feature = "http2" ) ) ) ) ]
58
+ #[ cfg_attr( feature = "deprecated" , allow( deprecated) ) ]
55
59
impl < I > Server < I , ( ) > {
56
60
/// Starts a [`Builder`](Builder) with the provided incoming stream.
57
61
pub fn builder ( incoming : I ) -> Builder < I > {
@@ -105,6 +109,7 @@ impl<S, E> Server<AddrIncoming, S, E> {
105
109
}
106
110
107
111
#[ cfg_attr( docsrs, doc( cfg( any( feature = "http1" , feature = "http2" ) ) ) ) ]
112
+ #[ cfg_attr( feature = "deprecated" , allow( deprecated) ) ]
108
113
impl < I , IO , IE , S , E , B > Server < I , S , E >
109
114
where
110
115
I : Accept < Conn = IO , Error = IE > ,
@@ -207,6 +212,7 @@ where
207
212
}
208
213
209
214
#[ cfg_attr( docsrs, doc( cfg( any( feature = "http1" , feature = "http2" ) ) ) ) ]
215
+ #[ cfg_attr( feature = "deprecated" , allow( deprecated) ) ]
210
216
impl < I , IO , IE , S , B , E > Future for Server < I , S , E >
211
217
where
212
218
I : Accept < Conn = IO , Error = IE > ,
@@ -237,6 +243,7 @@ impl<I: fmt::Debug, S: fmt::Debug> fmt::Debug for Server<I, S> {
237
243
// ===== impl Builder =====
238
244
239
245
#[ cfg_attr( docsrs, doc( cfg( any( feature = "http1" , feature = "http2" ) ) ) ) ]
246
+ #[ cfg_attr( feature = "deprecated" , allow( deprecated) ) ]
240
247
impl < I , E > Builder < I , E > {
241
248
/// Start a new builder, wrapping an incoming stream and low-level options.
242
249
///
@@ -771,6 +778,7 @@ pin_project! {
771
778
#[ must_use = "futures do nothing unless polled" ]
772
779
#[ derive( Debug ) ]
773
780
#[ cfg_attr( docsrs, doc( cfg( any( feature = "http1" , feature = "http2" ) ) ) ) ]
781
+ #[ cfg_attr( feature = "deprecated" , allow( deprecated) ) ]
774
782
pub struct Connecting <I , F , E = Exec > {
775
783
#[ pin]
776
784
future: F ,
0 commit comments