Struct petgraph::graph::NodeIndex[][src]

pub struct NodeIndex<Ix = DefaultIx>(_);

Node identifier.

Methods

impl<Ix: IndexType> NodeIndex<Ix>
[src]

Trait Implementations

impl<Ix> VisitMap<NodeIndex<Ix>> for FixedBitSet where
    Ix: IndexType
[src]

Mark a as visited. Read more

Return whether a has been visited before.

impl<Ix> Serialize for NodeIndex<Ix> where
    Ix: IndexType + Serialize
[src]

Serialize this value into the given Serde serializer. Read more

impl<'de, Ix> Deserialize<'de> for NodeIndex<Ix> where
    Ix: IndexType + Deserialize<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl<N, E, Ty, Ix> Index<NodeIndex<Ix>> for StableGraph<N, E, Ty, Ix> where
    Ty: EdgeType,
    Ix: IndexType
[src]

Index the StableGraph by NodeIndex to access node weights.

Panics if the node doesn't exist.

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl<N, E, Ty, Ix> IndexMut<NodeIndex<Ix>> for StableGraph<N, E, Ty, Ix> where
    Ty: EdgeType,
    Ix: IndexType
[src]

Index the StableGraph by NodeIndex to access node weights.

Panics if the node doesn't exist.

Performs the mutable indexing (container[index]) operation.

impl<Ix: Copy> Copy for NodeIndex<Ix>
[src]

impl<Ix: Clone> Clone for NodeIndex<Ix>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Ix: Default> Default for NodeIndex<Ix>
[src]

Returns the "default value" for a type. Read more

impl<Ix: PartialEq> PartialEq for NodeIndex<Ix>
[src]

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

This method tests for !=.

impl<Ix: PartialOrd> PartialOrd for NodeIndex<Ix>
[src]

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

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

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

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

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

impl<Ix: Eq> Eq for NodeIndex<Ix>
[src]

impl<Ix: Ord> Ord for NodeIndex<Ix>
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl<Ix: Hash> Hash for NodeIndex<Ix>
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl<Ix: IndexType> From<Ix> for NodeIndex<Ix>
[src]

Performs the conversion.

impl<Ix: Debug> Debug for NodeIndex<Ix>
[src]

Formats the value using the given formatter. Read more

impl<N, E, Ty, Ix> Index<NodeIndex<Ix>> for Graph<N, E, Ty, Ix> where
    Ty: EdgeType,
    Ix: IndexType
[src]

Index the Graph by NodeIndex to access node weights.

Panics if the node doesn't exist.

The returned type after indexing.

Performs the indexing (container[index]) operation.

impl<N, E, Ty, Ix> IndexMut<NodeIndex<Ix>> for Graph<N, E, Ty, Ix> where
    Ty: EdgeType,
    Ix: IndexType
[src]

Index the Graph by NodeIndex to access node weights.

Panics if the node doesn't exist.

Performs the mutable indexing (container[index]) operation.

impl<Ix: IndexType> GraphIndex for NodeIndex<Ix>
[src]

Auto Trait Implementations

impl<Ix> Send for NodeIndex<Ix> where
    Ix: Send

impl<Ix> Sync for NodeIndex<Ix> where
    Ix: Sync