(&self)
| 509 | Self::classify_content(self.content_type.as_deref(), &self.payload.body_bytes) |
| 510 | } |
| 511 | |
| 512 | fn raw_body_arc(&mut self) -> Arc<str> { |
| 513 | if !self.payload.body.is_empty() || self.payload.body_bytes.is_empty() { |
| 514 | return self.payload.body.clone(); |
| 515 | } |
| 516 | if let Some(raw) = &self.payload.cached_raw_body { |
nothing calls this directly
no outgoing calls
no test coverage detected