pub struct GraphOptimizer { /* private fields */ }Expand description
Runs a sequence of OptimizationPasses over a node list.
Implementations§
Source§impl GraphOptimizer
impl GraphOptimizer
Sourcepub fn add_pass(&mut self, pass: Box<dyn OptimizationPass>)
pub fn add_pass(&mut self, pass: Box<dyn OptimizationPass>)
Add an optimization pass.
Sourcepub fn run(&self, nodes: Vec<NodeSpec>) -> (Vec<NodeSpec>, OptimizationReport)
pub fn run(&self, nodes: Vec<NodeSpec>) -> (Vec<NodeSpec>, OptimizationReport)
Run all registered passes over nodes.
Returns the optimized node list and an OptimizationReport.
Trait Implementations§
Source§impl Default for GraphOptimizer
impl Default for GraphOptimizer
Source§fn default() -> GraphOptimizer
fn default() -> GraphOptimizer
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GraphOptimizer
impl !RefUnwindSafe for GraphOptimizer
impl Send for GraphOptimizer
impl Sync for GraphOptimizer
impl Unpin for GraphOptimizer
impl UnsafeUnpin for GraphOptimizer
impl !UnwindSafe for GraphOptimizer
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more