Struct mmd::pmx::bone::Bone[][src]

pub struct Bone<C: Config> {
    pub local_name: String,
    pub universal_name: String,
    pub position: C::Vec3,
    pub parent: C::BoneIndex,
    pub transform_level: i32,
    pub bone_flags: BitFlags<BoneFlags>,
    pub connection: Connection<C>,
    pub additional: Option<Additional<C>>,
    pub fixed_axis: Option<C::Vec3>,
    pub local_axis: Option<LocalAxis<C>>,
    pub external_parent_transform: Option<i32>,
    pub inverse_kinematics: Option<InverseKinematics<C>>,
}

Fields

local_name: Stringuniversal_name: Stringposition: C::Vec3parent: C::BoneIndextransform_level: i32bone_flags: BitFlags<BoneFlags>connection: Connection<C>additional: Option<Additional<C>>fixed_axis: Option<C::Vec3>local_axis: Option<LocalAxis<C>>external_parent_transform: Option<i32>inverse_kinematics: Option<InverseKinematics<C>>

Trait Implementations

impl<C: Config> Display for Bone<C> where
    C::BoneIndex: Display,
    C::Vec3: Display
[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for Bone<C> where
    <C as Config>::BoneIndex: RefUnwindSafe,
    <C as Config>::Vec3: RefUnwindSafe
[src]

impl<C> Send for Bone<C> where
    <C as Config>::BoneIndex: Send,
    <C as Config>::Vec3: Send
[src]

impl<C> Sync for Bone<C> where
    <C as Config>::BoneIndex: Sync,
    <C as Config>::Vec3: Sync
[src]

impl<C> Unpin for Bone<C> where
    <C as Config>::BoneIndex: Unpin,
    <C as Config>::Vec3: Unpin
[src]

impl<C> UnwindSafe for Bone<C> where
    <C as Config>::BoneIndex: UnwindSafe,
    <C as Config>::Vec3: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.