#[repr(C)]pub struct b3JointEvent {
pub jointId: b3JointId,
pub userData: *mut c_void,
}Expand description
Joint events report joints that are awake and have a force and/or torque exceeding the threshold The observed forces and torques are not returned for efficiency reasons.
Fields§
§jointId: b3JointIdThe joint id
userData: *mut c_voidThe user data from the joint for convenience
Trait Implementations§
Source§impl Clone for b3JointEvent
impl Clone for b3JointEvent
Source§fn clone(&self) -> b3JointEvent
fn clone(&self) -> b3JointEvent
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 moreimpl Copy for b3JointEvent
Auto Trait Implementations§
impl !Send for b3JointEvent
impl !Sync for b3JointEvent
impl Freeze for b3JointEvent
impl RefUnwindSafe for b3JointEvent
impl Unpin for b3JointEvent
impl UnsafeUnpin for b3JointEvent
impl UnwindSafe for b3JointEvent
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