pub struct JointEdge {
pub body_id: i32,
pub prev_key: i32,
pub next_key: i32,
}Expand description
A joint edge connects bodies and joints in a joint graph. (b3JointEdge)
Fields§
§body_id: i32§prev_key: i32§next_key: i32Trait Implementations§
impl Copy for JointEdge
impl Eq for JointEdge
impl StructuralPartialEq for JointEdge
Auto Trait Implementations§
impl Freeze for JointEdge
impl RefUnwindSafe for JointEdge
impl Send for JointEdge
impl Sync for JointEdge
impl Unpin for JointEdge
impl UnsafeUnpin for JointEdge
impl UnwindSafe for JointEdge
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