| LOW | actix-http/examples/tls_rustls.rs | 1 | //! Demonstrates TLS configuration (via Rustls) for HTTP/1.1 and HTTP/2 connections. |
| LOW | actix-http/src/error.rs | 181 | |
| LOW | actix-http/src/error.rs | 261 | |
| LOW | actix-http/src/config.rs | 21 | /// Default HTTP/1 response write buffer size. |
| LOW | actix-http/src/config.rs | 81 | |
| LOW | actix-http/src/lib.rs | 1 | //! HTTP types and services for the Actix ecosystem. |
| LOW | actix-http/src/service.rs | 41 | /// # Automatic HTTP Version Selection |
| LOW | actix-http/src/keep_alive.rs | 1 | use std::time::Duration; |
| LOW | actix-http/src/extensions.rs | 41 | pub fn new() -> Extensions { |
| LOW | actix-http/src/extensions.rs | 61 | .insert(TypeId::of::<T>(), Box::new(val)) |
| LOW | actix-http/src/extensions.rs | 81 | /// ``` |
| LOW | actix-http/src/extensions.rs | 101 | pub fn get_mut<T: 'static>(&mut self) -> Option<&mut T> { |
| LOW | actix-http/src/extensions.rs | 121 | pub fn get_or_insert<T: 'static>(&mut self, value: T) -> &mut T { |
| LOW | actix-http/src/extensions.rs | 141 | .entry(TypeId::of::<T>()) |
| LOW | actix-http/src/extensions.rs | 161 | pub fn remove<T: 'static>(&mut self) -> Option<T> { |
| LOW | actix-http/src/builder.rs | 101 | /// Set client request timeout (for first request). |
| LOW | actix-http/src/builder.rs | 141 | #[deprecated(since = "3.0.0", note = "Renamed to `client_disconnect_timeout`.")] |
| LOW | actix-http/src/responses/builder.rs | 21 | /// |
| LOW | actix-http/src/responses/builder.rs | 61 | /// |
| LOW | actix-http/src/responses/builder.rs | 101 | } |
| LOW | actix-http/src/body/size.rs | 1 | /// Body size hint. |
| LOW | actix-http/src/body/size.rs | 21 | |
| LOW | actix-http/src/body/message_body.rs | 21 | /// - Empty body: `()` |
| LOW | actix-http/src/body/message_body.rs | 41 | /// fn size(&self) -> BodySize { |
| LOW | actix-http/src/body/message_body.rs | 61 | |
| LOW | actix-http/src/body/message_body.rs | 81 | /// method again may panic, block forever, or cause other kinds of problems; this trait places |
| LOW | actix-http/src/body/either.rs | 21 | /// middleware's own error responses use the default `Right` variant of `BoxBody`. Of course, |
| LOW | actix-http/src/body/utils.rs | 21 | /// use bytes::Bytes; |
| LOW | actix-http/src/body/utils.rs | 41 | #[display("limit exceeded while collecting body bytes")] |
| LOW | actix-http/src/body/utils.rs | 61 | /// assert!(bytes.is_empty()); |
| LOW | actix-http/src/requests/request.rs | 181 | |
| LOW | actix-http/src/h1/decoder.rs | 501 | /// |
| LOW | actix-http/src/h1/dispatcher.rs | 1021 | "dispatcher should not be in keep-alive phase if state is not none: {:?}", |
| LOW | actix-http/src/h1/dispatcher.rs | 1101 | return Ok(false); |
| LOW | actix-http/src/header/map.rs | 1 | //! A multi-value [`HeaderMap`] and its iterators. |
| LOW | actix-http/src/header/map.rs | 21 | /// |
| LOW | actix-http/src/header/map.rs | 81 | |
| LOW | actix-http/src/header/map.rs | 101 | HeaderMap::default() |
| LOW | actix-http/src/header/map.rs | 161 | /// map.insert(header::ACCEPT, HeaderValue::from_static("text/plain")); |
| LOW | actix-http/src/header/map.rs | 181 | /// |
| LOW | actix-http/src/header/map.rs | 201 | /// map.insert(header::ACCEPT, HeaderValue::from_static("text/plain")); |
| LOW | actix-http/src/header/map.rs | 241 | /// consistent for each call to `get` if the map has not changed. |
| LOW | actix-http/src/header/map.rs | 261 | /// assert!(map.get(header::HOST).is_none()); |
| LOW | actix-http/src/header/map.rs | 281 | /// let mut map = HeaderMap::new(); |
| LOW | actix-http/src/header/map.rs | 301 | /// Returns an iterator over all values associated with a header name. |
| LOW | actix-http/src/header/map.rs | 321 | /// assert!(set_cookies_iter.next().is_none()); |
| LOW | actix-http/src/header/map.rs | 341 | /// |
| LOW | actix-http/src/header/map.rs | 361 | /// # use actix_http::header::{self, HeaderMap, HeaderValue}; |
| LOW | actix-http/src/header/map.rs | 381 | /// let removed = map.insert(header::ACCEPT, HeaderValue::from_static("text/plain")); |
| LOW | actix-http/src/header/map.rs | 401 | /// let mut map = HeaderMap::new(); |
| LOW | actix-http/src/header/map.rs | 421 | } |
| LOW | actix-http/src/header/map.rs | 441 | /// assert!(removed.next().is_none()); |
| LOW | actix-http/src/header/map.rs | 461 | Ok(Cow::Borrowed(name)) => self.inner.remove(name), |
| LOW | actix-http/src/header/map.rs | 481 | /// assert!(map.is_empty()); |
| LOW | actix-http/src/header/map.rs | 501 | /// |
| LOW | actix-http/src/header/map.rs | 521 | /// let mut iter = map.iter(); |
| LOW | actix-http/src/header/map.rs | 541 | } |
| LOW | actix-http/src/header/map.rs | 561 | /// assert_eq!(keys.len(), 2); |
| LOW | actix-http/src/header/map.rs | 601 | |
| LOW | actix-http/src/header/common.rs | 1 | //! Common header names not defined in [`http`]. |
| 420 more matches not shown… |