(&self, f: &mut std::fmt::Formatter<'_>)
| 105 | |
| 106 | impl std::fmt::Debug for PostgresClientConfig { |
| 107 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 108 | f.debug_struct("PostgresClientConfig") |
| 109 | .field("url", &self.url) |
| 110 | .finish_non_exhaustive() |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | impl PostgresClientConfig { |