(mut self, sql_example: impl Into<String>)
| 252 | } |
| 253 | |
| 254 | pub fn with_sql_example(mut self, sql_example: impl Into<String>) -> Self { |
| 255 | self.sql_example = Some(sql_example.into()); |
| 256 | self |
| 257 | } |
| 258 | |
| 259 | /// Adds documentation for a specific argument to the documentation. |
| 260 | /// |
no test coverage detected