pub struct b2ParticlePair { /* private fields */ }Expand description
Connection between two particles
Trait Implementations§
Source§impl CopyNew for b2ParticlePair
impl CopyNew for b2ParticlePair
Source§unsafe fn copy_new(
other: &b2ParticlePair,
this: Pin<&mut MaybeUninit<b2ParticlePair>>,
)
unsafe fn copy_new( other: &b2ParticlePair, this: Pin<&mut MaybeUninit<b2ParticlePair>>, )
Synthesized copy constructor.
Source§impl ExternType for b2ParticlePair
impl ExternType for b2ParticlePair
Source§impl MakeCppStorage for b2ParticlePair
impl MakeCppStorage for b2ParticlePair
Source§unsafe fn allocate_uninitialized_cpp_storage() -> *mut b2ParticlePair
unsafe fn allocate_uninitialized_cpp_storage() -> *mut b2ParticlePair
Allocates heap space for this type in C++ and return a pointer
to that space, but do not initialize that space (i.e. do not
yet call a constructor). Read more
Source§unsafe fn free_uninitialized_cpp_storage(arg0: *mut b2ParticlePair)
unsafe fn free_uninitialized_cpp_storage(arg0: *mut b2ParticlePair)
Frees a C++ allocation which has not yet
had a constructor called. Read more
Source§impl MoveNew for b2ParticlePair
impl MoveNew for b2ParticlePair
Source§unsafe fn move_new(
other: Pin<MoveRef<'_, b2ParticlePair>>,
this: Pin<&mut MaybeUninit<b2ParticlePair>>,
)
unsafe fn move_new( other: Pin<MoveRef<'_, b2ParticlePair>>, this: Pin<&mut MaybeUninit<b2ParticlePair>>, )
Synthesized move constructor.
impl UniquePtrTarget for b2ParticlePair
impl VectorElement for b2ParticlePair
impl WeakPtrTarget for b2ParticlePair
Auto Trait Implementations§
impl !Send for b2ParticlePair
impl !Sync for b2ParticlePair
impl !Unpin for b2ParticlePair
impl Freeze for b2ParticlePair
impl RefUnwindSafe for b2ParticlePair
impl UnsafeUnpin for b2ParticlePair
impl UnwindSafe for b2ParticlePair
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