pub struct PmxRigSpecBone {
pub name: String,
pub name_bytes: String,
pub parent_index: i32,
pub rest_position: [f32; 3],
pub deform_layer: i32,
pub fixed_axis: Option<[f32; 3]>,
pub local_axis: Option<PmxRigSpecLocalAxis>,
pub transform_after_physics: bool,
}Fields§
§name: String§name_bytes: String§parent_index: i32§rest_position: [f32; 3]§deform_layer: i32§fixed_axis: Option<[f32; 3]>§local_axis: Option<PmxRigSpecLocalAxis>§transform_after_physics: boolTrait Implementations§
Source§impl Clone for PmxRigSpecBone
impl Clone for PmxRigSpecBone
Source§fn clone(&self) -> PmxRigSpecBone
fn clone(&self) -> PmxRigSpecBone
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PmxRigSpecBone
impl Debug for PmxRigSpecBone
Source§impl<'de> Deserialize<'de> for PmxRigSpecBone
impl<'de> Deserialize<'de> for PmxRigSpecBone
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PmxRigSpecBone
impl RefUnwindSafe for PmxRigSpecBone
impl Send for PmxRigSpecBone
impl Sync for PmxRigSpecBone
impl Unpin for PmxRigSpecBone
impl UnsafeUnpin for PmxRigSpecBone
impl UnwindSafe for PmxRigSpecBone
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