Struct parquet::file::metadata::FileMetaData[][src]

pub struct FileMetaData { /* fields omitted */ }

Metadata for a Parquet file.

Methods

impl FileMetaData
[src]

Creates new file metadata.

Returns version of this file.

Returns number of rows in the file.

String message for application that wrote this file.

This should have the following format: <application> version <application version> (build <application build hash>).

parquet-mr version 1.8.0 (build 0fda28af84b9746396014ad6a415b90592a98b3b)

Returns Parquet ['Type`] that describes schema in this file.

Returns a reference to schema descriptor.

Returns reference counted clone for schema descriptor.

Column (sort) order used for min and max values of each column in this file.

Each column order corresponds to one column, determined by its position in the list, matching the position of the column in the schema.

When None is returned, there are no column orders available, and each column should be assumed to have undefined (legacy) column order.

Returns column order for ith column in this file. If column orders are not available, returns undefined (legacy) column order.

Auto Trait Implementations

impl !Send for FileMetaData

impl !Sync for FileMetaData