Enum parquet::errors::ParquetError[]

pub enum ParquetError {
    General(String),
    NYI(String),
    EOF(String),
}

Set of errors that can be produced during different operations in Parquet.

Variants

General Parquet error. Returned when code violates normal workflow of working with Parquet files.

"Not yet implemented" Parquet error. Returned when functionality is not yet available.

"End of file" Parquet error. Returned when IO related failures occur, e.g. when there are not enough bytes to decode.

Trait Implementations

impl Debug for ParquetError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ParquetError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for ParquetError

Formats the value using the given formatter. Read more

impl Error for ParquetError

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

impl From<Error> for ParquetError

Performs the conversion.

impl From<Error> for ParquetError

Performs the conversion.

impl From<Error> for ParquetError

Performs the conversion.

impl From<BorrowMutError> for ParquetError

Performs the conversion.

impl From<ParquetError> for Error
[src]

Performs the conversion.

Auto Trait Implementations