pub struct RigExportConfig {
pub include_bind_pose: bool,
pub precision: u32,
pub name_filter_prefix: String,
}Expand description
Configuration controlling how a rig is exported.
Fields§
§include_bind_pose: boolInclude the bind-pose in output.
precision: u32Floating-point precision (decimal places).
name_filter_prefix: StringExport only bones whose names match this prefix (empty = all).
Trait Implementations§
Source§impl Clone for RigExportConfig
impl Clone for RigExportConfig
Source§fn clone(&self) -> RigExportConfig
fn clone(&self) -> RigExportConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RigExportConfig
impl RefUnwindSafe for RigExportConfig
impl Send for RigExportConfig
impl Sync for RigExportConfig
impl Unpin for RigExportConfig
impl UnsafeUnpin for RigExportConfig
impl UnwindSafe for RigExportConfig
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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