Struct ncollide_utils::HashablePartialEq [] [src]

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

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

Methods

impl<T> HashablePartialEq<T>
[src]

unsafe fn new(value: T) -> HashablePartialEq<T>

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.

fn unwrap(self) -> T

Gets the wrapped value.

Trait Implementations

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

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

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

fn clone(&self) -> HashablePartialEq<T>

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

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

fn decode<__DT: Decoder>(__arg_0: &mut __DT) -> Result<HashablePartialEq<T>, __DT::Error>

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

fn encode<__ST: Encoder>(&self, __arg_0: &mut __ST) -> Result<(), __ST::Error>

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

fn eq(&self, __arg_0: &HashablePartialEq<T>) -> bool

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

fn ne(&self, __arg_0: &HashablePartialEq<T>) -> bool

This method tests for !=.

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

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

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the state given, updating the hasher as necessary.

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

Feeds a slice of this type into the state provided.