pub struct Debone {
pub enable: bool,
pub threshold: f32,
pub all_or_none: bool,
}Expand description
Arguments for debone post-process step.
Fields§
§enable: boolWhether to enable the step. Default: false
threshold: f32Threshold for considering bone necessary. Default: 1.0
all_or_none: boolWhether to require all bones to meet the threshold before removing any. Default: false
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Debone
impl RefUnwindSafe for Debone
impl Send for Debone
impl Sync for Debone
impl Unpin for Debone
impl UnwindSafe for Debone
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