pub struct SkeletonBone {
pub name: String,
pub pos: Vec3,
pub parent: Option<String>,
pub attributes: BTreeMap<String, String>,
}Fields§
§name: String§pos: Vec3§parent: Option<String>§attributes: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for SkeletonBone
impl Clone for SkeletonBone
Source§fn clone(&self) -> SkeletonBone
fn clone(&self) -> SkeletonBone
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 SkeletonBone
impl Debug for SkeletonBone
Source§impl PartialEq for SkeletonBone
impl PartialEq for SkeletonBone
impl StructuralPartialEq for SkeletonBone
Auto Trait Implementations§
impl Freeze for SkeletonBone
impl RefUnwindSafe for SkeletonBone
impl Send for SkeletonBone
impl Sync for SkeletonBone
impl Unpin for SkeletonBone
impl UnsafeUnpin for SkeletonBone
impl UnwindSafe for SkeletonBone
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