pub struct b2RayCastInput { /* private fields */ }Expand description
Ray-cast input data. The ray extends from p1 to p1 + maxFraction * (p2 - p1).
Trait Implementations§
Source§impl CopyNew for b2RayCastInput
impl CopyNew for b2RayCastInput
Source§unsafe fn copy_new(
other: &b2RayCastInput,
this: Pin<&mut MaybeUninit<b2RayCastInput>>,
)
unsafe fn copy_new( other: &b2RayCastInput, this: Pin<&mut MaybeUninit<b2RayCastInput>>, )
Synthesized copy constructor.
Source§impl ExternType for b2RayCastInput
impl ExternType for b2RayCastInput
Source§impl MakeCppStorage for b2RayCastInput
impl MakeCppStorage for b2RayCastInput
Source§unsafe fn allocate_uninitialized_cpp_storage() -> *mut b2RayCastInput
unsafe fn allocate_uninitialized_cpp_storage() -> *mut b2RayCastInput
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 b2RayCastInput)
unsafe fn free_uninitialized_cpp_storage(arg0: *mut b2RayCastInput)
Frees a C++ allocation which has not yet
had a constructor called. Read more
Source§impl MoveNew for b2RayCastInput
impl MoveNew for b2RayCastInput
Source§unsafe fn move_new(
other: Pin<MoveRef<'_, b2RayCastInput>>,
this: Pin<&mut MaybeUninit<b2RayCastInput>>,
)
unsafe fn move_new( other: Pin<MoveRef<'_, b2RayCastInput>>, this: Pin<&mut MaybeUninit<b2RayCastInput>>, )
Synthesized move constructor.
impl UniquePtrTarget for b2RayCastInput
impl VectorElement for b2RayCastInput
impl WeakPtrTarget for b2RayCastInput
Auto Trait Implementations§
impl Freeze for b2RayCastInput
impl RefUnwindSafe for b2RayCastInput
impl !Send for b2RayCastInput
impl !Sync for b2RayCastInput
impl !Unpin for b2RayCastInput
impl UnwindSafe for b2RayCastInput
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