(
&self,
method: &str,
path: &str,
request: &[u8],
stream: &mut S,
)
| 50 | |
| 51 | impl crate::metadata_server::MetadataHandler for MetadataContext { |
| 52 | async fn handle<S: AsyncRead + AsyncWrite + Unpin + Send>( |
| 53 | &self, |
| 54 | method: &str, |
| 55 | path: &str, |
| 56 | request: &[u8], |
| 57 | stream: &mut S, |
| 58 | ) -> Result<()> { |
| 59 | handle_forward_request(self, method, path, request, stream).await |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | async fn handle_forward_request<S>( |
no test coverage detected