pub trait GraphImpl {
// Required method
fn cleanup_precise(&mut self);
// Provided method
fn cleanup(&mut self) { ... }
}Required Methods§
Sourcefn cleanup_precise(&mut self)
fn cleanup_precise(&mut self)
Traverses the graph and drops any inaccessible node. Disregards any heuristic designed to improve cleanup performance.