Constructs an error indicating that the client has violated the pgwire protocol.
(source: impl Into<Box<dyn std::error::Error + Send + Sync>>)
| 332 | /// Constructs an error indicating that the client has violated the pgwire |
| 333 | /// protocol. |
| 334 | pub fn input_err(source: impl Into<Box<dyn std::error::Error + Send + Sync>>) -> io::Error { |
| 335 | io::Error::new(io::ErrorKind::InvalidInput, source.into()) |
| 336 | } |
no outgoing calls
no test coverage detected