(&self, f: &mut Formatter<'_>)
| 71 | |
| 72 | impl Display for NullTreatment { |
| 73 | fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { |
| 74 | f.write_str(match self { |
| 75 | NullTreatment::IgnoreNulls => "IGNORE NULLS", |
| 76 | NullTreatment::RespectNulls => "RESPECT NULLS", |
| 77 | }) |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | #[cfg(feature = "sql")] |
nothing calls this directly
no test coverage detected