pub struct OptimizeGraph {
pub enable: bool,
pub exclude_list: String,
}
Expand description
Arguments for optimize_graph
post-process step.
Fields§
§enable: bool
Whether to enable the step. Default: false
exclude_list: String
Space-delimited list of nodes to keep. Identifiers containing whitespace must be
enclosed in single quotes. e.g. node1 'node 2' node3
.
Trait Implementations§
Source§impl Default for OptimizeGraph
impl Default for OptimizeGraph
Source§fn default() -> OptimizeGraph
fn default() -> OptimizeGraph
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OptimizeGraph
impl RefUnwindSafe for OptimizeGraph
impl Send for OptimizeGraph
impl Sync for OptimizeGraph
impl Unpin for OptimizeGraph
impl UnwindSafe for OptimizeGraph
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