[][src]Enum amadeus::source::serde::JsonError

pub enum JsonError<A, B, C> {
    File(A),
    Partition(B),
    Page(C),
    Json(Error),
}

Variants

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

Trait Implementations

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

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any + Serialize + Deserialize
[src]

impl<T> AsFail for T where
    T: Fail, 

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> Debug for T where
    T: Debug + Serialize + Deserialize + ?Sized
[src]

impl<T> Deserialize for T where
    T: DeserializeOwned
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Display for T where
    T: Display + Serialize + Deserialize + ?Sized
[src]

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

impl<T> Error for T where
    T: Error + Serialize + Deserialize + ?Sized
[src]

impl<E> Fail for E where
    E: 'static + Error + Send + Sync

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

impl<T> IntersectPlusUnionIsPlus for T where
    T: ?Sized
[src]

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Serialize for T where
    T: Serialize + ?Sized
[src]

impl<T> Serialize for T where
    T: Serialize + ?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 = !

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<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Type for T where
    T: ?Sized
[src]

impl<T> Type for T[src]

type Meta = Concrete

Type of metadata for type.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,