(reader: impl std::io::prelude::Read)
| 362 | } |
| 363 | |
| 364 | fn from_reader(reader: impl std::io::prelude::Read) -> Result<Self, trpc::Error> { |
| 365 | let wrapper: trpc::response::Wrapper<Self> = |
| 366 | serde_json::from_reader(reader).map_err(trpc::Error::serde)?; |
| 367 | wrapper.into_result() |
| 368 | } |
| 369 | } |
| 370 | } |
nothing calls this directly
no outgoing calls
no test coverage detected