Returns the [`Fields`] of this [`StructArray`]
(&self)
| 309 | |
| 310 | /// Returns the [`Fields`] of this [`StructArray`] |
| 311 | pub fn fields(&self) -> &Fields { |
| 312 | match self.data_type() { |
| 313 | DataType::Struct(f) => f, |
| 314 | _ => unreachable!(), |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | /// Return child array whose field name equals to column_name |
| 319 | /// |