pub struct JointLink {
pub joint_id: i32,
pub body_id_a: i32,
pub body_id_b: i32,
}Expand description
Cached joint data stored in the island for fast contiguous iteration. (b2JointLink)
Fields§
§joint_id: i32§body_id_a: i32§body_id_b: i32Trait Implementations§
impl Copy for JointLink
impl Eq for JointLink
impl StructuralPartialEq for JointLink
Auto Trait Implementations§
impl Freeze for JointLink
impl RefUnwindSafe for JointLink
impl Send for JointLink
impl Sync for JointLink
impl Unpin for JointLink
impl UnsafeUnpin for JointLink
impl UnwindSafe for JointLink
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