Returns a reference to [`FieldRef`] for a column at specific index within the schema. See also [Self::qualified_field] to get both qualifier and field
(&self, i: usize)
| 369 | /// |
| 370 | /// See also [Self::qualified_field] to get both qualifier and field |
| 371 | pub fn field(&self, i: usize) -> &FieldRef { |
| 372 | &self.inner.fields[i] |
| 373 | } |
| 374 | |
| 375 | /// Returns the qualifier (if any) and [`FieldRef`] for a column at specific |
| 376 | /// index within the schema. |
no outgoing calls
no test coverage detected