[][src]Trait handlegraph::pathhandlegraph::embedded_paths::IntoPathIds

pub trait IntoPathIds {
    type PathIds: Iterator<Item = PathId>;
    fn path_ids(self) -> Self::PathIds;
}

Trait for iterating through all PathIds in a graph.

Associated Types

Loading content...

Required methods

fn path_ids(self) -> Self::PathIds[src]

Loading content...

Implementors

impl<'a> IntoPathIds for &'a HashGraph[src]

type PathIds = Copied<Keys<'a, PathId, Path>>

impl<'a> IntoPathIds for &'a PackedGraph[src]

type PathIds = Copied<Values<'a, Vec<u8>, PathId>>

Loading content...