| 120 | |
| 121 | |
| 122 | pub trait IntoRequest: Into<Request> { |
| 123 | type Response: TryFrom<Response, Error = TryFromResponseError>; |
| 124 | } |
| 125 | |
| 126 | #[derive(Debug)] |
| 127 | pub struct TryFromResponseError; |
nothing calls this directly
no outgoing calls
no test coverage detected