pub struct RemoveComponent {
pub enable: bool,
pub components: Vec<ComponentType>,
}
Expand description
Arguments for remove_component
post-process step.
Fields§
§enable: bool
Whether to enable the step. Default: false
components: Vec<ComponentType>
Specify which components to remove. Default: none
Trait Implementations§
Source§impl Default for RemoveComponent
impl Default for RemoveComponent
Source§fn default() -> RemoveComponent
fn default() -> RemoveComponent
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RemoveComponent
impl RefUnwindSafe for RemoveComponent
impl Send for RemoveComponent
impl Sync for RemoveComponent
impl Unpin for RemoveComponent
impl UnwindSafe for RemoveComponent
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