[][src]Struct declarative_dataflow::plan::antijoin::Antijoin

pub struct Antijoin<P1: Implementable, P2: Implementable> {
    pub variables: Vec<u32>,
    pub left_plan: Box<P1>,
    pub right_plan: Box<P2>,
}

A plan stage anti-joining both its sources on the specified variables. Throws if the sources are not union-compatible, i.e. bind all of the same variables in the same order.

Fields

variables: Vec<u32>

TODO

left_plan: Box<P1>

Plan for the left input.

right_plan: Box<P2>

Plan for the right input.

Trait Implementations

impl<P1: Implementable, P2: Implementable> Implementable for Antijoin<P1, P2>[src]

fn datafy(&self) -> Vec<(Eid, Aid, Value)>[src]

@TODO

impl<P1: PartialOrd + Implementable, P2: PartialOrd + Implementable> PartialOrd<Antijoin<P1, P2>> for Antijoin<P1, P2>[src]

impl<P1: PartialEq + Implementable, P2: PartialEq + Implementable> PartialEq<Antijoin<P1, P2>> for Antijoin<P1, P2>[src]

impl<P1: Clone + Implementable, P2: Clone + Implementable> Clone for Antijoin<P1, P2>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<P1: Ord + Implementable, P2: Ord + Implementable> Ord for Antijoin<P1, P2>[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Returns max if self is greater than max, and min if self is less than min. Otherwise this will return self. Panics if min > max. Read more

impl<P1: Eq + Implementable, P2: Eq + Implementable> Eq for Antijoin<P1, P2>[src]

impl<P1: Debug + Implementable, P2: Debug + Implementable> Debug for Antijoin<P1, P2>[src]

impl<P1: Hash + Implementable, P2: Hash + Implementable> Hash for Antijoin<P1, P2>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<P1: Implementable, P2: Implementable> Serialize for Antijoin<P1, P2> where
    P1: Serialize,
    P2: Serialize
[src]

impl<'de, P1: Implementable, P2: Implementable> Deserialize<'de> for Antijoin<P1, P2> where
    P1: Deserialize<'de>,
    P2: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<P1, P2> Send for Antijoin<P1, P2> where
    P1: Send,
    P2: Send

impl<P1, P2> Sync for Antijoin<P1, P2> where
    P1: Sync,
    P2: Sync

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> Data for T where
    T: 'static + Send + Sync + Any + Deserialize<'a> + Serialize

impl<T> Data for T where
    T: 'static + Clone
[src]

impl<T> ExchangeData for T where
    T: Data + Data, 
[src]

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

impl<T> Data for T where
    T: Ord + Debug + ExchangeData
[src]

impl<T> Hashable for T where
    T: Hash
[src]

type Output = u64

The type of the output value.