[][src]Trait rs_graph::traits::refs::GraphSizeRef

pub trait GraphSizeRef<'a>: GraphSize<'a> {
    fn nodes(&self) -> Self::NodeIter;
fn edges(&self) -> Self::EdgeIter; }

A reference to a basic graph.

This trait contains methods with a unrestricted lifetime for self.

Required methods

fn nodes(&self) -> Self::NodeIter

fn edges(&self) -> Self::EdgeIter

Loading content...

Implementations on Foreign Types

impl<'a, G> GraphSizeRef<'a> for &'a G where
    G: GraphSize<'a>, 
[src]

Loading content...

Implementors

impl<'a, G> GraphSizeRef<'a> for Network<&'a G> where
    G: Directed<'a>, 
[src]

impl<'a, G> GraphSizeRef<'a> for ReverseDigraph<G> where
    G: GraphSizeRef<'a>, 
[src]

Loading content...