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]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

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

1.0.0
[src]

This method tests for !=.

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

[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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

1.0.0
[src]

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]

[src]

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

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

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

The resulting type after dereferencing.

[src]

Dereferences the value.

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

impl<'b, T> Hash for Ptr<'b, 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

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

[src]

Formats the value using the given formatter.