Struct petgraph::graphmap::Ptr [] [src]

pub struct Ptr<'b, T: 'b>(pub &'b T);

A reference that is hashed and compared by its pointer value.

Ptr is used for certain configurations of GraphMap, in particular in the combination where the node type for GraphMap is something of type for example Ptr(&Cell<T>), with the Cell<T> being TypedArena allocated.

Trait Implementations

impl<'b, T> Copy for Ptr<'b, T>
[src]

impl<'b, T> Clone for Ptr<'b, T>
[src]

fn clone(&self) -> Self

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<'b, T> PartialEq for Ptr<'b, T>
[src]

fn eq(&self, other: &Ptr<'b, T>) -> bool

Ptr compares by pointer equality, i.e if they point to the same value

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl<'b, T> PartialOrd for Ptr<'b, T>
[src]

fn partial_cmp(&self, other: &Ptr<'b, T>) -> Option<Ordering>

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

fn lt(&self, other: &Rhs) -> bool
1.0.0

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

fn le(&self, other: &Rhs) -> bool
1.0.0

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

fn gt(&self, other: &Rhs) -> bool
1.0.0

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

fn ge(&self, other: &Rhs) -> bool
1.0.0

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

impl<'b, T> Ord for Ptr<'b, T>
[src]

fn cmp(&self, other: &Ptr<'b, T>) -> Ordering

Ptr is ordered by pointer value, i.e. an arbitrary but stable and total order.

impl<'b, T> Deref for Ptr<'b, T>
[src]

type Target = T

The resulting type after dereferencing

fn deref<'a>(&'a self) -> &'a T

The method called to dereference a value

impl<'b, T> Eq for Ptr<'b, T>
[src]

impl<'b, T> Hash for Ptr<'b, T>
[src]

fn hash<H: Hasher>(&self, st: &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.

impl<'b, T: Debug> Debug for Ptr<'b, T>
[src]

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

Formats the value using the given formatter.