pub type Result<T, E = ParquetError> = Result<T, E>;
Expand description
A specialized Result
for Parquet errors.
Aliased Type§
enum Result<T, E = ParquetError> {
Ok(T),
Err(E),
}
pub type Result<T, E = ParquetError> = Result<T, E>;
A specialized Result
for Parquet errors.
enum Result<T, E = ParquetError> {
Ok(T),
Err(E),
}