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