Trait stack_graphs::cycles::Appendable
source · pub trait Appendable {
type Ctx;
// Required methods
fn append_to(
&self,
graph: &StackGraph,
partials: &mut PartialPaths,
ctx: &mut Self::Ctx,
path: &mut PartialPath
) -> Result<(), PathResolutionError>;
fn start_node(&self, ctx: &mut Self::Ctx) -> Handle<Node>;
fn end_node(&self, ctx: &mut Self::Ctx) -> Handle<Node>;
}