[][src]Struct amadeus::par_stream::InnerJoinClosure

pub struct InnerJoinClosure<K, V1, V2> { /* fields omitted */ }

Implementations

impl<K, V1, V2> InnerJoinClosure<K, V1, V2>[src]

pub fn new(right: MultiMap<K, V2, RandomState>) -> InnerJoinClosure<K, V1, V2>[src]

Trait Implementations

impl<K, V1, V2> Clone for InnerJoinClosure<K, V1, V2> where
    MultiMap<K, V2, RandomState>: Clone
[src]

impl<'de, K, V1, V2> Deserialize<'de> for InnerJoinClosure<K, V1, V2> where
    MultiMap<K, V2, RandomState>: Deserialize<'de>, 
[src]

impl<K, V1, V2> FnMut<((K, V1),)> for InnerJoinClosure<K, V1, V2> where
    K: Eq + Hash,
    V2: Clone

impl<K, V1, V2> FnOnce<((K, V1),)> for InnerJoinClosure<K, V1, V2> where
    K: Eq + Hash,
    V2: Clone

type Output = Option<(K, ImplIter<V1>, ImplIter<V2>)>

The returned type after the call operator is used.

impl<K, V1, V2> Serialize for InnerJoinClosure<K, V1, V2> where
    MultiMap<K, V2, RandomState>: Serialize
[src]

Auto Trait Implementations

impl<K, V1, V2> RefUnwindSafe for InnerJoinClosure<K, V1, V2> where
    K: RefUnwindSafe,
    V2: RefUnwindSafe

impl<K, V1, V2> Send for InnerJoinClosure<K, V1, V2> where
    K: Send,
    V2: Send

impl<K, V1, V2> Sync for InnerJoinClosure<K, V1, V2> where
    K: Sync,
    V2: Sync

impl<K, V1, V2> Unpin for InnerJoinClosure<K, V1, V2> where
    K: Unpin,
    V2: Unpin

impl<K, V1, V2> UnwindSafe for InnerJoinClosure<K, V1, V2> where
    K: UnwindSafe,
    V2: UnwindSafe

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> Borrow<T> for T where
    T: ?Sized
[src]

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

impl<T> Deserialize for T where
    T: DeserializeOwned
[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, Args> FnMut<Args> for T where
    T: FnMut<Args>, 
[src]

impl<T, Args> FnMut<Args> for T where
    T: FnMut<Args> + Serialize + Deserialize + ?Sized
[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<T, Args> FnOnce<Args> for T where
    T: FnOnceBox<Args> + Serialize + Deserialize + ?Sized
[src]

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> ProcessSend for T where
    T: Send + Serialize + for<'de> Deserialize<'de> + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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