Skip to main content

GraphArchitect

Trait GraphArchitect 

Source
pub trait GraphArchitect {
    // Required method
    fn architect(
        &self,
        logical_graph: &SourceCodeGraph,
    ) -> Result<SourceCodeGraph>;
}
Expand description

Transforms a raw logical graph into a deployable filesystem graph.

Required Methods§

Source

fn architect(&self, logical_graph: &SourceCodeGraph) -> Result<SourceCodeGraph>

Apply the architecture strategy to the graph.

Implementors§