[][src]Struct parquet::file::serialized_reader::SerializedFileReader

pub struct SerializedFileReader<R: ChunkReader> { /* fields omitted */ }

A serialized implementation for Parquet FileReader.

Implementations

impl<R: 'static + ChunkReader> SerializedFileReader<R>[src]

pub fn new(chunk_reader: R) -> Result<Self>[src]

Creates file reader from a Parquet file. Returns error if Parquet file does not exist or is corrupt.

Trait Implementations

impl<R: 'static + ChunkReader> FileReader for SerializedFileReader<R>[src]

impl IntoIterator for SerializedFileReader<File>[src]

Conversion into a RowIter using the full file schema over all row groups.

type Item = Row

The type of the elements being iterated over.

type IntoIter = RowIter<'static>

Which kind of iterator are we turning this into?

impl<'a> TryFrom<&'a Path> for SerializedFileReader<File>[src]

type Error = ParquetError

The type returned in the event of a conversion error.

impl<'a> TryFrom<&'a str> for SerializedFileReader<File>[src]

type Error = ParquetError

The type returned in the event of a conversion error.

impl TryFrom<File> for SerializedFileReader<File>[src]

type Error = ParquetError

The type returned in the event of a conversion error.

impl TryFrom<String> for SerializedFileReader<File>[src]

type Error = ParquetError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl<R> RefUnwindSafe for SerializedFileReader<R> where
    R: RefUnwindSafe
[src]

impl<R> Send for SerializedFileReader<R> where
    R: Send + Sync
[src]

impl<R> Sync for SerializedFileReader<R> where
    R: Send + Sync
[src]

impl<R> Unpin for SerializedFileReader<R>[src]

impl<R> UnwindSafe for SerializedFileReader<R> where
    R: RefUnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,