#[repr(C)]pub struct b3JointEvents {
pub jointEvents: *mut b3JointEvent,
pub count: c_int,
}Expand description
Joint events are buffered in the world and are available as event arrays after the time step is complete. Note: this data becomes invalid if joints are destroyed
Fields§
§jointEvents: *mut b3JointEventArray of events
count: c_intNumber of events
Trait Implementations§
Source§impl Clone for b3JointEvents
impl Clone for b3JointEvents
Source§fn clone(&self) -> b3JointEvents
fn clone(&self) -> b3JointEvents
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 b3JointEvents
Auto Trait Implementations§
impl !Send for b3JointEvents
impl !Sync for b3JointEvents
impl Freeze for b3JointEvents
impl RefUnwindSafe for b3JointEvents
impl Unpin for b3JointEvents
impl UnsafeUnpin for b3JointEvents
impl UnwindSafe for b3JointEvents
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