(&mut self, from: usize, to: usize, cx: &mut Context<Self>)
| 223 | cx.notify(); |
| 224 | } |
| 225 | |
| 226 | fn sync_headers_from_request(&mut self, cx: &mut Context<Self>) { |
| 227 | if !self.header_rows.is_empty() { |
| 228 | return; |
| 229 | } |
| 230 | |
| 231 | let Some(request) = self.request.as_ref() else { |
| 232 | return; |
| 233 | }; |
| 234 | |
| 235 | let headers: Vec<(String, String, bool)> = request |