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> Copy for Ptr<'b, T>impl<'b, T> Clone for Ptr<'b, T>[src]
impl<'b, T> Clone for Ptr<'b, T>fn clone(&self) -> Self[src]
fn clone(&self) -> SelfReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<'b, T> PartialEq for Ptr<'b, T>[src]
impl<'b, T> PartialEq for Ptr<'b, T>fn eq(&self, other: &Ptr<'b, T>) -> bool[src]
fn eq(&self, other: &Ptr<'b, T>) -> boolPtr compares by pointer equality, i.e if they point to the same value
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl<'b, T> PartialOrd for Ptr<'b, T>[src]
impl<'b, T> PartialOrd for Ptr<'b, T>fn partial_cmp(&self, other: &Ptr<'b, T>) -> Option<Ordering>[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) -> bool1.0.0[src]
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src]
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
fn ge(&self, other: &Rhs) -> boolThis 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]
impl<'b, T> Ord for Ptr<'b, T>fn cmp(&self, other: &Ptr<'b, T>) -> Ordering[src]
fn cmp(&self, other: &Ptr<'b, T>) -> OrderingPtr is ordered by pointer value, i.e. an arbitrary but stable and total order.
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl<'b, T> Deref for Ptr<'b, T>[src]
impl<'b, T> Deref for Ptr<'b, T>type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &T[src]
fn deref(&self) -> &TDereferences the value.
impl<'b, T> Eq for Ptr<'b, T>[src]
impl<'b, T> Eq for Ptr<'b, T>impl<'b, T> Hash for Ptr<'b, T>[src]
impl<'b, T> Hash for Ptr<'b, T>fn hash<H: Hasher>(&self, st: &mut H)[src]
fn hash<H: Hasher>(&self, st: &mut H)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]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl<'b, T: Debug> Debug for Ptr<'b, T>[src]
impl<'b, T: Debug> Debug for Ptr<'b, T>