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

pub trait GraphPathsRef: GraphPaths {
    type PathRef: PathBase<StepIx = Self::StepIx>;
    fn get_path_ref(self, id: PathId) -> Option<Self::PathRef>;
}

A handlegraph that can produce references to specific paths.

Associated Types

type PathRef: PathBase<StepIx = Self::StepIx>[src]

Loading content...

Required methods

fn get_path_ref(self, id: PathId) -> Option<Self::PathRef>[src]

Loading content...

Implementors

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

type PathRef = &'a Path

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

type PathRef = PackedPathRef<'a>

Loading content...