Struct differential_dataflow::hashable::HashableWrapper[][src]

pub struct HashableWrapper<T: Hashable> {
    pub item: T,
    // some fields omitted
}

Wrapper to stash hash value with the actual value.

Fields

The item, for reference.

Trait Implementations

impl<T: Ord + Hashable> HashOrdered for HashableWrapper<T>
[src]

impl<T: Hashable + Abomonation> Abomonation for HashableWrapper<T>
[src]

Write any additional information about &self beyond its binary representation. Read more

Recover any information for &mut self not evident from its binary representation. Read more

Reports the number of further bytes required to entomb self.

impl<T: Clone + Hashable> Clone for HashableWrapper<T> where
    T::Output: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T: Default + Hashable> Default for HashableWrapper<T> where
    T::Output: Default
[src]

Returns the "default value" for a type. Read more

impl<T: Ord + Hashable> Ord for HashableWrapper<T> where
    T::Output: Ord
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<T: PartialOrd + Hashable> PartialOrd for HashableWrapper<T> where
    T::Output: PartialOrd
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl<T: Eq + Hashable> Eq for HashableWrapper<T> where
    T::Output: Eq
[src]

impl<T: PartialEq + Hashable> PartialEq for HashableWrapper<T> where
    T::Output: PartialEq
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Debug + Hashable> Debug for HashableWrapper<T> where
    T::Output: Debug
[src]

Formats the value using the given formatter. Read more

impl<T: Copy + Hashable> Copy for HashableWrapper<T> where
    T::Output: Copy
[src]

impl<T: Hashable> Hashable for HashableWrapper<T>
[src]

The type of the output value.

A well-distributed integer derived from the data.

impl<T: Hashable> Deref for HashableWrapper<T>
[src]

The resulting type after dereferencing.

Dereferences the value.

impl<T: Hashable> From<T> for HashableWrapper<T>
[src]

Performs the conversion.

Auto Trait Implementations

impl<T> Send for HashableWrapper<T> where
    T: Send,
    <T as Hashable>::Output: Send

impl<T> Sync for HashableWrapper<T> where
    T: Sync,
    <T as Hashable>::Output: Sync