[][src]Enum amadeus_serde::CsvError

pub enum CsvError<A, B, C> {
    File(A),
    Partition(B),
    Page(C),
    Csv(InternalCsvError),
}

Variants

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

Trait Implementations

impl<A, B, C> Clone for CsvError<A, B, C> where
    A: Clone,
    B: Clone,
    C: Clone
[src]

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

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

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

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

impl<A, B, C> From<Error> for CsvError<A, B, C>[src]

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

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

Auto Trait Implementations

impl<A, B, C> !RefUnwindSafe for CsvError<A, B, C>

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

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

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

impl<A, B, C> !UnwindSafe for CsvError<A, B, C>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,