(
&self,
_request: tonic::Request<tonic::Streaming<ExecSandboxInput>>,
)
| 324 | type ExecSandboxInteractiveStream = |
| 325 | tokio_stream::wrappers::ReceiverStream<Result<ExecSandboxEvent, Status>>; |
| 326 | async fn exec_sandbox_interactive( |
| 327 | &self, |
| 328 | _request: tonic::Request<tonic::Streaming<ExecSandboxInput>>, |
| 329 | ) -> Result<Response<Self::ExecSandboxInteractiveStream>, Status> { |
| 330 | Err(Status::unimplemented("not implemented in test")) |
| 331 | } |
| 332 | |
| 333 | async fn update_config( |
| 334 | &self, |
no outgoing calls
no test coverage detected