Struct swc_graph_analyzer::GraphAnalyzer
source · [−]pub struct GraphAnalyzer<G>where
G: DepGraph,{ /* private fields */ }
Expand description
Utility to detect cycles in a dependency graph.
Implementations
sourceimpl<G> GraphAnalyzer<G>where
G: DepGraph,
impl<G> GraphAnalyzer<G>where
G: DepGraph,
pub fn new(dep_graph: G) -> Self
pub fn load(&mut self, entry: G::ModuleId)
pub fn into_result(self) -> GraphResult<G>
Auto Trait Implementations
impl<G> RefUnwindSafe for GraphAnalyzer<G>where
G: RefUnwindSafe,
<G as DepGraph>::ModuleId: RefUnwindSafe,
impl<G> Send for GraphAnalyzer<G>where
G: Send,
<G as DepGraph>::ModuleId: Send,
impl<G> Sync for GraphAnalyzer<G>where
G: Sync,
<G as DepGraph>::ModuleId: Sync,
impl<G> Unpin for GraphAnalyzer<G>where
G: Unpin,
<G as DepGraph>::ModuleId: Unpin,
impl<G> UnwindSafe for GraphAnalyzer<G>where
G: UnwindSafe,
<G as DepGraph>::ModuleId: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more