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]

[src]

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

[src]

Perform any final edits before committing &mut self. Importantly, this method should only manipulate the fields of self; any owned memory may not be valid. Read more

[src]

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

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

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

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

[src]

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

[src]

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

Compares and returns the maximum of two values. Read more

[src]

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

Compares and returns the minimum of two values. Read more

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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]

[src]

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

[src]

This method tests for !=.

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

[src]

Formats the value using the given formatter.

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.

[src]

A well-distributed integer derived from the data.

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

The resulting type after dereferencing.

[src]

Dereferences the value.

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

[src]

Performs the conversion.