(
&self,
request: &JsonRpcRequest,
timings_enabled: bool,
route_cache: &mut HookProjectRouteCache,
)
| 1897 | } |
| 1898 | |
| 1899 | async fn handle_request_with_timings( |
| 1900 | &self, |
| 1901 | request: &JsonRpcRequest, |
| 1902 | timings_enabled: bool, |
| 1903 | route_cache: &mut HookProjectRouteCache, |
| 1904 | ) -> Option<JsonRpcResponse> { |
| 1905 | self.handle_request_with_timings_and_implicit_project( |
| 1906 | request, |
| 1907 | timings_enabled, |
| 1908 | route_cache, |
| 1909 | None, |
| 1910 | ) |
| 1911 | .await |
| 1912 | } |
| 1913 | |
| 1914 | async fn handle_request_with_timings_and_implicit_project( |
| 1915 | &self, |
no test coverage detected