[][src]Struct utah2::combinators::interact::OuterJoin

pub struct OuterJoin<'a, L, T> where
    L: Iterator<Item = Window<'a, T>> + Clone,
    T: UtahNum + 'a, 
{ /* fields omitted */ }

Methods

impl<'a, L, T> OuterJoin<'a, L, T> where
    L: Iterator<Item = Window<'a, T>> + Clone,
    T: UtahNum + 'a, 
[src]

pub fn new<RI>(
    left: L,
    right: RI,
    left_columns: Vec<String>,
    right_columns: Vec<String>
) -> Self where
    RI: Iterator<Item = Window<'a, T>>, 
[src]

Trait Implementations

impl<'a, L: Clone, T: Clone> Clone for OuterJoin<'a, L, T> where
    L: Iterator<Item = Window<'a, T>> + Clone,
    T: UtahNum + 'a, 
[src]

impl<'a, L, T> Iterator for OuterJoin<'a, L, T> where
    L: Iterator<Item = Window<'a, T>> + Clone,
    T: UtahNum + 'a, 
[src]

type Item = (String, ArrayView1<'a, T>, Option<ArrayView1<'a, T>>)

The type of the elements being iterated over.

impl<'a, L, T> ToDataFrame<'a, (String, ArrayBase<ViewRepr<&'a T>, Dim<[usize; 1]>>, Option<ArrayBase<ViewRepr<&'a T>, Dim<[usize; 1]>>>), T> for OuterJoin<'a, L, T> where
    L: Iterator<Item = Window<'a, T>> + Clone,
    T: UtahNum
[src]

Auto Trait Implementations

impl<'a, L, T> RefUnwindSafe for OuterJoin<'a, L, T> where
    L: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, L, T> Send for OuterJoin<'a, L, T> where
    L: Send,
    T: Sync

impl<'a, L, T> Sync for OuterJoin<'a, L, T> where
    L: Sync,
    T: Sync

impl<'a, L, T> Unpin for OuterJoin<'a, L, T> where
    L: Unpin

impl<'a, L, T> UnwindSafe for OuterJoin<'a, L, T> where
    L: UnwindSafe,
    T: RefUnwindSafe

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<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> Itertools for T where
    T: Iterator + ?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<V, T> VZip<V> for T where
    V: MultiLane<T>,