[][src]Struct amadeus_streaming::NeverEqual

pub struct NeverEqual<F, T> { /* fields omitted */ }

Trait Implementations

impl<F, T> Clone for NeverEqual<F, T> where
    F: Clone
[src]

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

impl<'__serde_closure_a, '__serde_closure_b, F, T> Fn<(&'__serde_closure_a T, &'__serde_closure_b T)> for NeverEqual<F, T> where
    F: for<'a> Fn<(&'a T, &'a T), Output = Ordering>, 

impl<'__serde_closure_a, '__serde_closure_b, F, T> FnMut<(&'__serde_closure_a T, &'__serde_closure_b T)> for NeverEqual<F, T> where
    F: for<'a> Fn<(&'a T, &'a T), Output = Ordering>, 

impl<'__serde_closure_a, '__serde_closure_b, F, T> FnOnce<(&'__serde_closure_a T, &'__serde_closure_b T)> for NeverEqual<F, T> where
    F: for<'a> Fn<(&'a T, &'a T), Output = Ordering>, 
[src]

type Output = Ordering

The returned type after the call operator is used.

impl<F, T> Serialize for NeverEqual<F, T> where
    F: Serialize
[src]

Auto Trait Implementations

impl<F, T> RefUnwindSafe for NeverEqual<F, T> where
    F: RefUnwindSafe

impl<F, T> Send for NeverEqual<F, T> where
    F: Send

impl<F, T> Sync for NeverEqual<F, T> where
    F: Sync

impl<F, T> Unpin for NeverEqual<F, T> where
    F: Unpin

impl<F, T> UnwindSafe for NeverEqual<F, T> where
    F: 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<T, Args> Fn<Args> for T where
    T: Fn<Args>, 
[src]

impl<T, Args> FnMut<Args> for T where
    T: FnMut<Args>, 
[src]

impl<T, Args> FnOnce<Args> for T where
    T: FnOnce<Args>, 
[src]

type Output = <T as FnOnce<Args>>::Output

The returned type after the call operator is used.

impl<A, F> FnOnceBox<A> for F where
    F: FnOnce<A>, 
[src]

type Output = <F as FnOnce<A>>::Output

The returned type after the call operator is used.

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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