[][src]Enum amadeus_parquet::ParquetError

pub enum ParquetError<A, B, C> {
    File(A),
    Partition(B),
    Page(C),
    Parquet(InternalParquetError),
}

Variants

File(A)
Partition(B)
Page(C)
Parquet(InternalParquetError)

Trait Implementations

impl<A: Debug, B: Debug, C: Debug> Debug for ParquetError<A, B, C>[src]

impl<'de, A, B, C> Deserialize<'de> for ParquetError<A, B, C> where
    A: Deserialize<'de>,
    B: Deserialize<'de>,
    C: Deserialize<'de>, 
[src]

impl<A, B, C> Display for ParquetError<A, B, C> where
    A: Display,
    B: Display,
    C: Display
[src]

impl<A, B, C> Error for ParquetError<A, B, C> where
    A: Error,
    B: Error,
    C: Error
[src]

impl<A, B, C> PartialEq<ParquetError<A, B, C>> for ParquetError<A, B, C> where
    A: PartialEq,
    B: PartialEq,
    C: PartialEq
[src]

impl<A, B, C> Serialize for ParquetError<A, B, C> where
    A: Serialize,
    B: Serialize,
    C: Serialize
[src]

Auto Trait Implementations

impl<A, B, C> RefUnwindSafe for ParquetError<A, B, C> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    C: RefUnwindSafe

impl<A, B, C> Send for ParquetError<A, B, C> where
    A: Send,
    B: Send,
    C: Send

impl<A, B, C> Sync for ParquetError<A, B, C> where
    A: Sync,
    B: Sync,
    C: Sync

impl<A, B, C> Unpin for ParquetError<A, B, C> where
    A: Unpin,
    B: Unpin,
    C: Unpin

impl<A, B, C> UnwindSafe for ParquetError<A, B, C> where
    A: UnwindSafe,
    B: UnwindSafe,
    C: UnwindSafe

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

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

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

impl<T> ProcessSend for T where
    T: Send + Serialize + for<'de> Deserialize<'de> + ?Sized
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[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>,