Returns the arrow [`Field`]
(&self)
| 584 | impl AvroField { |
| 585 | /// Returns the arrow [`Field`] |
| 586 | pub(crate) fn field(&self) -> Field { |
| 587 | self.data_type.field_with_name(&self.name) |
| 588 | } |
| 589 | |
| 590 | /// Returns the [`AvroDataType`] |
| 591 | pub(crate) fn data_type(&self) -> &AvroDataType { |