Enum datafusion::exec::ExecutionError [] [src]

pub enum ExecutionError {
    IoError(Error),
    CsvError(Error),
    ParserError(ParserError),
    Custom(String),
}

Variants

Trait Implementations

impl Debug for ExecutionError
[src]

[src]

Formats the value using the given formatter.

impl From<Error> for ExecutionError
[src]

[src]

Performs the conversion.

impl From<String> for ExecutionError
[src]

[src]

Performs the conversion.

impl From<ParserError> for ExecutionError
[src]

[src]

Performs the conversion.