Find if the field exists with the given name
(&self, name: &str)
| 569 | |
| 570 | /// Find if the field exists with the given name |
| 571 | pub fn has_column_with_unqualified_name(&self, name: &str) -> bool { |
| 572 | self.fields().iter().any(|field| field.name() == name) |
| 573 | } |
| 574 | |
| 575 | /// Find if the field exists with the given qualified name |
| 576 | pub fn has_column_with_qualified_name( |
no test coverage detected