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§
Sourcefn architect(&self, logical_graph: &SourceCodeGraph) -> Result<SourceCodeGraph>
fn architect(&self, logical_graph: &SourceCodeGraph) -> Result<SourceCodeGraph>
Apply the architecture strategy to the graph.