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
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'b, T> PartialEq for Ptr<'b, T>
[src]
fn eq(&self, other: &Ptr<'b, T>) -> bool
[src]
Ptr compares by pointer equality, i.e if they point to the same value
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests for !=
.
impl<'b, T> PartialOrd for Ptr<'b, T>
[src]
fn partial_cmp(&self, other: &Ptr<'b, T>) -> Option<Ordering>
[src]
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
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[src]
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[src]
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[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]
fn cmp(&self, other: &Ptr<'b, T>) -> Ordering
[src]
Ptr is ordered by pointer value, i.e. an arbitrary but stable and total order.
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
impl<'b, T> Deref for Ptr<'b, T>
[src]
type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &T
[src]
Dereferences the 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)
[src]
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more