Struct ncollide2d::utils::HashablePartialEq [] [src]

pub struct HashablePartialEq<T> { /* fields omitted */ }

A structure that implements Eq and is hashable even if the wrapped data implements only PartialEq.

Methods

impl<T> HashablePartialEq<T>
[src]

[src]

Creates a new HashablePartialEq. This is unsafe because you must be sure that you really want to transform the wrapped object's partial equality to an equivalence relation.

[src]

Gets the wrapped value.

Trait Implementations

impl<T: PartialEq> PartialEq for HashablePartialEq<T>
[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: Clone> Clone for HashablePartialEq<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for HashablePartialEq<T>
[src]

[src]

Formats the value using the given formatter. Read more

impl<T: PartialEq> Eq for HashablePartialEq<T>
[src]

impl<T: AsBytes> Hash for HashablePartialEq<T>
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

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

Auto Trait Implementations

impl<T> Send for HashablePartialEq<T> where
    T: Send

impl<T> Sync for HashablePartialEq<T> where
    T: Sync