[][src]Struct differential_dataflow::difference::DiffVector

pub struct DiffVector<R> { /* fields omitted */ }

A variable number of accumulable updates.

Methods

impl<R> DiffVector<R>[src]

pub fn new(vec: Vec<R>) -> DiffVector<R>[src]

Create new DiffVector from Vec

Trait Implementations

impl<R: Semigroup> Semigroup for DiffVector<R>[src]

impl<R> IntoIterator for DiffVector<R>[src]

type Item = R

The type of the elements being iterated over.

type IntoIter = IntoIter<R>

Which kind of iterator are we turning this into?

impl<R: Clone> Clone for DiffVector<R>[src]

impl<R: Eq> Eq for DiffVector<R>[src]

impl<R: Ord> Ord for DiffVector<R>[src]

impl<R: PartialEq> PartialEq<DiffVector<R>> for DiffVector<R>[src]

impl<R: PartialOrd> PartialOrd<DiffVector<R>> for DiffVector<R>[src]

impl<R: Debug> Debug for DiffVector<R>[src]

impl<T: Copy, R: Mul<T>> Mul<T> for DiffVector<R>[src]

type Output = DiffVector<<R as Mul<T>>::Output>

The resulting type after applying the * operator.

impl<R: Neg<Output = R> + Clone> Neg for DiffVector<R>[src]

type Output = DiffVector<<R as Neg>::Output>

The resulting type after applying the - operator.

impl<'a, R: AddAssign<&'a R> + Clone> AddAssign<&'a DiffVector<R>> for DiffVector<R>[src]

impl<R> Deref for DiffVector<R>[src]

type Target = [R]

The resulting type after dereferencing.

impl<R> DerefMut for DiffVector<R>[src]

impl<R> StructuralPartialEq for DiffVector<R>[src]

impl<R> StructuralEq for DiffVector<R>[src]

impl<R> Abomonation for DiffVector<R> where
    Vec<R>: Abomonation,
    R: Abomonation
[src]

impl<R> Serialize for DiffVector<R> where
    R: Serialize
[src]

impl<'de, R> Deserialize<'de> for DiffVector<R> where
    R: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<R> Send for DiffVector<R> where
    R: Send

impl<R> Sync for DiffVector<R> where
    R: Sync

impl<R> Unpin for DiffVector<R> where
    R: Unpin

impl<R> UnwindSafe for DiffVector<R> where
    R: UnwindSafe

impl<R> RefUnwindSafe for DiffVector<R> where
    R: RefUnwindSafe

Blanket Implementations

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

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

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

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

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

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

impl<T> Data for T where
    T: 'static + Send + Sync + Any + Abomonation

impl<T, I> MutableAntichainFilter<T> for I where
    I: IntoIterator<Item = (T, i64)>,
    T: PartialOrder + Ord + Clone
[src]

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

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

impl<T, D, I> Replay<T, D> for I where
    D: Data,
    I: IntoIterator,
    T: Timestamp,
    <I as IntoIterator>::Item: EventIterator<T, D>,
    <I as IntoIterator>::Item: 'static, 
[src]

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