@@ -2200,7 +2200,7 @@ impl ClientBuilder {
22002200 ///
22012201 /// The default is false.
22022202 #[ cfg( feature = "http3-no-provider" ) ]
2203- #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" , ) ) ) ) ]
2203+ #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" ) ) ) ) ]
22042204 pub fn tls_early_data ( mut self , enabled : bool ) -> ClientBuilder {
22052205 self . config . tls_enable_early_data = enabled;
22062206 self
@@ -2212,7 +2212,7 @@ impl ClientBuilder {
22122212 ///
22132213 /// [`TransportConfig`]: https://docs.rs/quinn/latest/quinn/struct.TransportConfig.html
22142214 #[ cfg( feature = "http3-no-provider" ) ]
2215- #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" , ) ) ) ) ]
2215+ #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" ) ) ) ) ]
22162216 pub fn http3_max_idle_timeout ( mut self , value : Duration ) -> ClientBuilder {
22172217 self . config . quic_max_idle_timeout = Some ( value) ;
22182218 self
@@ -2229,7 +2229,7 @@ impl ClientBuilder {
22292229 ///
22302230 /// Panics if the value is over 2^62.
22312231 #[ cfg( feature = "http3-no-provider" ) ]
2232- #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" , ) ) ) ) ]
2232+ #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" ) ) ) ) ]
22332233 pub fn http3_stream_receive_window ( mut self , value : u64 ) -> ClientBuilder {
22342234 self . config . quic_stream_receive_window = Some ( value. try_into ( ) . unwrap ( ) ) ;
22352235 self
@@ -2246,7 +2246,7 @@ impl ClientBuilder {
22462246 ///
22472247 /// Panics if the value is over 2^62.
22482248 #[ cfg( feature = "http3-no-provider" ) ]
2249- #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" , ) ) ) ) ]
2249+ #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" ) ) ) ) ]
22502250 pub fn http3_conn_receive_window ( mut self , value : u64 ) -> ClientBuilder {
22512251 self . config . quic_receive_window = Some ( value. try_into ( ) . unwrap ( ) ) ;
22522252 self
@@ -2258,7 +2258,7 @@ impl ClientBuilder {
22582258 ///
22592259 /// [`TransportConfig`]: https://docs.rs/quinn/latest/quinn/struct.TransportConfig.html
22602260 #[ cfg( feature = "http3-no-provider" ) ]
2261- #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" , ) ) ) ) ]
2261+ #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" ) ) ) ) ]
22622262 pub fn http3_send_window ( mut self , value : u64 ) -> ClientBuilder {
22632263 self . config . quic_send_window = Some ( value) ;
22642264 self
@@ -2272,7 +2272,7 @@ impl ClientBuilder {
22722272 /// [BBR]: https://datatracker.ietf.org/doc/html/draft-ietf-ccwg-bbr
22732273 /// [CUBIC]: https://datatracker.ietf.org/doc/html/rfc8312
22742274 #[ cfg( feature = "http3-no-provider" ) ]
2275- #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" , ) ) ) ) ]
2275+ #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" ) ) ) ) ]
22762276 pub fn http3_congestion_bbr ( mut self ) -> ClientBuilder {
22772277 self . config . quic_congestion_bbr = true ;
22782278 self
@@ -2288,7 +2288,7 @@ impl ClientBuilder {
22882288 ///
22892289 /// [`Builder`]: https://docs.rs/h3/latest/h3/client/struct.Builder.html#method.max_field_section_size
22902290 #[ cfg( feature = "http3-no-provider" ) ]
2291- #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" , ) ) ) ) ]
2291+ #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" ) ) ) ) ]
22922292 pub fn http3_max_field_section_size ( mut self , value : u64 ) -> ClientBuilder {
22932293 self . config . h3_max_field_section_size = Some ( value. try_into ( ) . unwrap ( ) ) ;
22942294 self
@@ -2306,7 +2306,7 @@ impl ClientBuilder {
23062306 ///
23072307 /// [`Builder`]: https://docs.rs/h3/latest/h3/client/struct.Builder.html#method.send_grease
23082308 #[ cfg( feature = "http3-no-provider" ) ]
2309- #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" , ) ) ) ) ]
2309+ #[ cfg_attr( docsrs, doc( cfg( all( reqwest_unstable, feature = "http3-no-provider" ) ) ) ) ]
23102310 pub fn http3_send_grease ( mut self , enabled : bool ) -> ClientBuilder {
23112311 self . config . h3_send_grease = Some ( enabled) ;
23122312 self
0 commit comments