(&mut self, method: HttpMethod, cx: &mut Context<Self>)
| 57 | if !self.is_open || self.closing_at.is_some() { |
| 58 | return; |
| 59 | } |
| 60 | self.is_open = false; |
| 61 | self.close_time = Some(std::time::Instant::now()); |
| 62 | if motion::reduced_motion(cx) { |
| 63 | self.closing_at = None; |
| 64 | self.close_epoch = self.close_epoch.wrapping_add(1); |
| 65 | cx.notify(); |
nothing calls this directly
no outgoing calls
no test coverage detected