[][src]Struct rql::Relate

pub struct Relate<A, B, F> where
    A: Iterator,
    B: Iterator + Clone,
    A::Item: Clone
{ /* fields omitted */ }

A relationship between two tables

Trait Implementations

impl<A, B, F> Iterator for Relate<A, B, F> where
    A: Iterator,
    B: Iterator + Clone,
    A::Item: Clone,
    F: Fn(&A::Item, &B::Item) -> bool
[src]

type Item = (A::Item, B::Item)

The type of the elements being iterated over.

Auto Trait Implementations

impl<A, B, F> RefUnwindSafe for Relate<A, B, F> where
    A: RefUnwindSafe,
    B: RefUnwindSafe,
    F: RefUnwindSafe,
    <A as Iterator>::Item: RefUnwindSafe

impl<A, B, F> Send for Relate<A, B, F> where
    A: Send,
    B: Send,
    F: Send,
    <A as Iterator>::Item: Send

impl<A, B, F> Sync for Relate<A, B, F> where
    A: Sync,
    B: Sync,
    F: Sync,
    <A as Iterator>::Item: Sync

impl<A, B, F> Unpin for Relate<A, B, F> where
    A: Unpin,
    B: Unpin,
    F: Unpin,
    <A as Iterator>::Item: Unpin

impl<A, B, F> UnwindSafe for Relate<A, B, F> where
    A: UnwindSafe,
    B: UnwindSafe,
    F: UnwindSafe,
    <A as Iterator>::Item: 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> From<T> for T[src]

impl<I> HasRows for I where
    I: Iterator
[src]

type Iter = I

The row iterator type

impl<I> HasRowsMut for I where
    I: Iterator
[src]

type Iter = I

The row iterator type

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<I> IteratorRandom for I where
    I: Iterator
[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>,