| 7 | use tokio_stream::{Stream, StreamExt}; |
| 8 | |
| 9 | pub(crate) trait IntoRequest { |
| 10 | fn into_req(self) -> Result<Request<Body>, Error>; |
| 11 | } |
| 12 | |
| 13 | // /runtime/invocation/next |
| 14 | #[derive(Debug, Eq, PartialEq)] |
nothing calls this directly
no outgoing calls
no test coverage detected