Trait parquet::file::reader::Length[][src]

pub trait Length {
    fn len(&self) -> u64;
}
Expand description

Length should return the total number of bytes in the input source. It’s mainly used to read the metadata, which is at the end of the source.

Required methods

fn len(&self) -> u64[src]

Returns the amount of bytes of the inner source.

Implementations on Foreign Types

impl Length for File[src]

fn len(&self) -> u64[src]

Implementors

impl Length for SliceableCursor[src]

fn len(&self) -> u64[src]

impl<R: ParquetReader> Length for FileSource<R>[src]

fn len(&self) -> u64[src]