(&self, f: &mut fmt::Formatter)
| 33 | |
| 34 | impl fmt::Display for ValueError { |
| 35 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 36 | write!(f, "{}", self.0) |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | /// Primitive SQL values. |
nothing calls this directly
no test coverage detected