File tree Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Expand file tree Collapse file tree 4 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 97
97
/// A builder to configure an HTTP connection.
98
98
///
99
99
/// After setting options, the builder is used to create a handshake future.
100
+ ///
101
+ /// **Note**: The default values of options are *not considered stable*. They
102
+ /// are subject to change at any time.
100
103
#[ derive( Clone , Debug ) ]
101
104
pub struct Builder {
102
105
h09_responses : bool ,
Original file line number Diff line number Diff line change 50
50
/// A builder to configure an HTTP connection.
51
51
///
52
52
/// After setting options, the builder is used to create a handshake future.
53
+ ///
54
+ /// **Note**: The default values of options are *not considered stable*. They
55
+ /// are subject to change at any time.
53
56
#[ derive( Clone , Debug ) ]
54
57
pub struct Builder < Ex > {
55
58
pub ( super ) exec : Ex ,
Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ pin_project_lite::pin_project! {
41
41
}
42
42
43
43
/// A configuration builder for HTTP/1 server connections.
44
+ ///
45
+ /// **Note**: The default values of options are *not considered stable*. They
46
+ /// are subject to change at any time.
44
47
#[ derive( Clone , Debug ) ]
45
48
pub struct Builder {
46
49
timer : Time ,
Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ pin_project! {
35
35
}
36
36
37
37
/// A configuration builder for HTTP/2 server connections.
38
+ ///
39
+ /// **Note**: The default values of options are *not considered stable*. They
40
+ /// are subject to change at any time.
38
41
#[ derive( Clone , Debug ) ]
39
42
pub struct Builder < E > {
40
43
exec : E ,
You can’t perform that action at this time.
0 commit comments