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 9797/// A builder to configure an HTTP connection.
9898///
9999/// 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.
100103#[ derive( Clone , Debug ) ]
101104pub struct Builder {
102105 h09_responses : bool ,
Original file line number Diff line number Diff line change 5050/// A builder to configure an HTTP connection.
5151///
5252/// 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.
5356#[ derive( Clone , Debug ) ]
5457pub struct Builder < Ex > {
5558 pub ( super ) exec : Ex ,
Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ pin_project_lite::pin_project! {
4141}
4242
4343/// 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.
4447#[ derive( Clone , Debug ) ]
4548pub struct Builder {
4649 timer : Time ,
Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ pin_project! {
3535}
3636
3737/// 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.
3841#[ derive( Clone , Debug ) ]
3942pub struct Builder < E > {
4043 exec : E ,
You can’t perform that action at this time.
0 commit comments